I am using D7.
Thanks,
Jim
--
www.mustangpeak.net
>
> Once in a while I get a comment that my application scrolls windows in
> the opposite direction that the rest of the applications on a
> particular computer do. Any thoughts as to why this may be?
Do you handle OnMousewheel events in your code somewhere? And which
controls are affected by this problem? For most controls the VCL just
leaves the mouse wheel handling to the OS, you know...
--
Peter Below (TeamB)
Don't be a vampire (http://slash7.com/pages/vampires),
use the newsgroup archives :
http://www.tamaracka.com/search.htm
http://groups.google.com
> Jim wrote:
>
> >
> > Once in a while I get a comment that my application scrolls windows
> > in the opposite direction that the rest of the applications on a
> > particular computer do. Any thoughts as to why this may be?
>
> Do you handle OnMousewheel events in your code somewhere? And which
> controls are affected by this problem? For most controls the VCL just
> leaves the mouse wheel handling to the OS, you know...
Yes, as most of the controls are either mine (EasyListview,
VirtualShellTools) or Mike Lischke' (VirtualTreeview)
Jim
--
www.mustangpeak.net
Then examine how you interpret the delta value of the message. It's
dead easy to scroll in the wrong direction if you don't read the MS
docs very carefully, since its somewhat unintuitive, due to the fact
that the Windows standard coordinate system is upside down from a
normal cartesian one.
Understood but why does it seem to work "correct" on my and many others
system for years and I only get this once it a blue moon (two that I
can recall in 4+ years)
Jim
--
www.mustangpeak.net
In this case I would suspect buggy mouse drivers on the users system
and not your program code.