Question How can i make a panel scroll up.

matt1234hi5

Member
Joined
May 13, 2008
Messages
12
Programming Experience
1-3
hello everyone, lets say I have a panel (tweet_holder) and its autoscroll is set to true because I need it to scroll, how can I make it scroll to the top?

Or if that isn't possible, is there any way to know how far the user is scrolled down in the panel.

Thanks.
 
VB.NET:
Me.Panel1.VerticalScroll.Value = 0
Also browse through the Panel class members in help, there are several regarding scrolling.
 
Back
Top