ScrollBar object

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

When I add the ScrollBar object to my form and run the form, the square
inside the bar blinks after you use it and keeps blinking. Is there a way to
make it quit the blinking already?

Thanks,
Angie
 
Angie,

Irritating isn't it.
Set the Large Change property to a value that is greater
than the Max property.

Jim Cone
San Francisco, USA


When I add the ScrollBar object to my form and run the form, the square
inside the bar blinks after you use it and keeps blinking. Is there a way to
make it quit the blinking already?
Thanks,
Angie
 
Angie,
It only blinks because it has the focus.
When the focus changes to another control, hey presto, no blink.

If it was the first control with a TabIndex property that you placed on the
userform, it will initially have the focus and blink. Solution: Set the
TabIndex of a different control to 0.

NickHK
 
Back
Top