Does anyone know how to stop the little scrollbox tab thing on the intrinsic hscroll and vscroll controls from flashing? And no I can't use the flatscrollbar.
Printable View
Does anyone know how to stop the little scrollbox tab thing on the intrinsic hscroll and vscroll controls from flashing? And no I can't use the flatscrollbar.
the box flashes only when the scrollbar has the focus.
Thus, set the focus to any other control in your form in case of a change or GotFocus event.
(assuming that there is a command1 control on your form)
private Sub HScroll1_Change()
Command1.SetFocus
End Sub
private Sub HScroll1_GotFocus()
Command1.SetFocus
End Sub