View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.programming
Tony Tony is offline
external usenet poster
 
Posts: 5
Default How can I eliminate blinking scrollbars?

Thanks, may have to settle for this. I had set the PropThumb property to
false so that the thumb was smaller and therefore less annoying. Your
suggestion is better anyway.

Thanks,

Tony


"Jim Cone" wrote in message
...
Tony,
You can eliminate the thumb (the part that flashes) by setting
the LargeChange property to a value greater than the Max property
and setting the ProportionalThumb property to True.

Of course that isn't always what you need, but other than setting the
focus elsewhere I am not aware of a way to keep it from flashing.
--
Jim Cone
Portland, Oregon USA



"Tony"
wrote in message
I have a VBA from which uses scrollbars to scroll data through a grid of
text boxes (not associated with a frame or the form its self). The problem
is that when they get focus, they flash. Very Annoying!. I have not found
anyway to stop this, so I tried shifting focus to another control during
the
Change event. This works if the Scrollbar value only changes once (single
click). If the user scrolls any longer, the value of the scrollbar
increases, but then it keeps the focus leaving the user with a blinking
scrollbar. Any thoughts?
Thanks for any help here...
Tony