I know that Scroll Area Gadgets handle scrolling on their own. I want to scroll it a certain amount though, under program control, say 25% or 40 pixels or something similiar. By what method would this be possible?
Demivec
How to scroll a Scroll Area gadget a specified amount?
Here is a Windows only API way:
Code: Select all
SendMessage_(GadgetID(#ScollAreaGadget), #WM_VSCROLL, #SB_THUMBTRACK | (#position_scrolling << 16), 0)
