[RESOLVED] Picture1.Top = -VScroll1.Value
im using this code to scroll my picture but i want scroll value something bigger then this
Code:
Private Sub VScroll1_Change()
Picture1.Top = -VScroll1.Value
End Sub
this code scrolls picture very slowly, which is very time consuming and bad looking. pls help
Re: Picture1.Top = -VScroll1.Value
Scrollbars.
1. LargeChange property is how many steps to scroll when some clicks on the space between the thumb and the up/down arrows. Set this to a larger number
2. SmallChange property is how many steps to scroll when up/down arrow clicked, usually best if left at one. But can be larger than one and if user wants to scoll just 1 value, they will have to use the thumb.
Re: Picture1.Top = -VScroll1.Value
thanks for nice explanation :D