is it possible to stop the blinkness of Scrollbars?
blinkness which comes when we click on status bar scroll stick. and also is it possible to remove scrolling stick from the scrollbars?
Printable View
is it possible to stop the blinkness of Scrollbars?
blinkness which comes when we click on status bar scroll stick. and also is it possible to remove scrolling stick from the scrollbars?
To stop blinking, set scrollbar TabStop = False.
What is a scrolling stick? If you are talking about the middle part (known as the thumb), then no, not that I know of. Generally, if the scrollbar is not needed, one makes it invisible.
great,
now i know this is known as Thumb, also TabStop works,
Thump is hide when we disable scrollbar. thanks :D
You can also set the focus to another control after the scroll change event
eg:
Picture1.SetFocus
i was doing the same till now, but i thought i must ask if it can be done and got its answerQuote:
Originally Posted by isnoend07