While reading the code posted by paul, I found these comments.
vb Code:
  1. ''' <summary>
  2. ''' timer
  3. ''' </summary>
  4. ''' <param name="sender"></param>
  5. ''' <param name="e"></param>
  6. ''' <remarks>interval = 100ms</remarks>
  7. Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
  8.     Panel1.AutoScrollPosition = New Point(Panel1.AutoScrollPosition.X, Math.Abs(Panel1.AutoScrollPosition.Y) + 1)
  9. End Sub
What is the specialty of it ? And what is it used for ?