
how to detect middle mouse button scroll
Quote:
> hi, thnx for ur email.
> i have a textbox called txtName.
> when i type "txtName." a list of methods
> and properties pops up.
> why is "MouseWheel" not present in that list?!
Because it is a Protected method. You can not call it from outside. Calling
the method doesn't make sense. You have to write the method yourself and it
is called automatically when the mousewheel moves. Please read again, what I
wrote.
Armin
Quote:
> > > how can i detect the scrolling of the middle mouse
> > > button in a textbox?
> > Derive your own control from textbox and overwrite OnMouseWheel.
> > Armin