|
-
May 1st, 2001, 08:03 AM
#1
Scrollbars
Does anyone know why the sliders on scrollbar controls blink and if there is any way to stop it?
Thanks in advance.
-
May 1st, 2001, 09:06 AM
#2
Re: Scrollbars
The Scroll thumb blinks when the scroll bar has got focus. To prevent it, set the focus to another control on your form as soon as the scroll bar gets the focus.
Say, your form has a picturebox Picture1 and a scroll bar HScroll1. Then
private sub HScroll1_GotFocus()
Picture1.SetFocus
end sub
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|