Scrollbar

  • Thread starter Thread starter venky
  • Start date Start date
V

venky

i have a windows forms and autoscroll set to true. After certain
operation, how can i reset the vertical scroll bar position to top fo
the form
 
Set the "AutoScrollPosition" property.

this.AutoScrollPosition = new Point(0, 0);
 
That code worked for me. Is there anything else special that you're
attempting to do that might be interfering with this? Try creating a simple
Form and testing the code that I posted.
 
Back
Top