This will give you scrolling text accross a form, even if the form is resizable.

You need 1 timer: enabled, interal set about 50
Also 1 label, with a caption.

in the timer:

VB Code:
  1. Private Sub Timer1_Timer()
  2.  
  3. If Label1.Left <= "0" - Label1.Width Then
  4. Label1.Left = Form1.Width
  5. End If
  6.  
  7. Label1.Left = Label1.Left - 100
  8.  
  9. End Sub