Well, If you're trying to scroll the text that you output to the form using the Print method, you have to do some work to preserve the text. But the easiest way is to just use a Text Box with the MultiLine Property set to true. It will automatically scroll upwards and Downwards.

Anyway, you can get the value of the scrollbar by putting code into the VScrollBar1_Scroll event or VScrollBar1_Change event.
To get an Idea, do the following.

VB Code:
  1. Private Sub VScrollBar1_Scroll
  2. Text1.Text = VScrollBar1.Value
  3. EndSub