For some reason the wheel mouse works on some components (treeviews) but not on my forms. I'm not sure which windows message to trap to catch the wheel mouse.
I'm also trying to then scroll the form, I've tried using
this->Perform(EM_SCROLL,SB_LINEDOWN,0);
and
ScrollWindowEx(this->Handle,0,10,NULL,NULL,NULL,NULL,SW_ERASE);
and
this->ScrollBy(0,10);
None of these seem to work correctly.
P.S. I'm using C++ Builder 3.
Thanks,
Ed
I'm also trying to then scroll the form, I've tried using
this->Perform(EM_SCROLL,SB_LINEDOWN,0);
and
ScrollWindowEx(this->Handle,0,10,NULL,NULL,NULL,NULL,SW_ERASE);
and
this->ScrollBy(0,10);
None of these seem to work correctly.
P.S. I'm using C++ Builder 3.
Thanks,
Ed