I have no VB Access right now. But from the top of my head...

VB Code:
  1. 'In a form
  2. Dim LastV as Integer
  3.  
  4. Private Sub Form_Load()
  5. LastV = VScrollBar1.Value
  6. End Sub
  7.  
  8. Private Sub VScrollBar1_Scroll()
  9.      'Move the label depending on the scroll
  10.      'If the scroll value increases, subtraction will become addition
  11.      Label1.Top = Label1.Top - (LastV - VScrollBar1.Value)
  12.      'Save the Last scroll value
  13.      LastV = VScrollBar1.Value
  14. End Sub

Add a scrollbar (VScrollBar1) and a label (Label1) to the form