I have a TScrollBox
inside of a TFrame
and when I use my mouse's wheel it simply does not goes up nor down the ScrollBox scrolling.
I have tried to use
TScrollBox(Sender).Perform(WM_VSCROLL,1,0);
on the FrameMouseWheelDown
but it does not trigger.
Any Ideas?
You can use the
OnMouseWheel
event handler:My scroll box looks like this: