Occurs after a scrollbar event.
Sub ComboBox_Scroll()
For a ComboBox control, this event occurs only when the scrollbars in the dropdown portion of the control are manipulated.
Ocx ComboBox cmb = "", 10, 10, 100, 22 : cmb.Sorted = False
Local Int32 n
For n = 1 To 60 : cmb.AddItem "Item" & n : Next n
Do : Sleep : Until Me Is Nothing
Sub cmb_Scroll
Message "Scrollbar moved"
EndSub
This event does not seem to work, as shown by the above example.
{Created by Sjouke Hamstra; Last updated: 22/10/2014 by James Gaite}