Marquee in VB

You might also like

You are on page 1of 1

Private Sub Timer1_Timer() Label1.Caption = Right$(Label1.Caption, Len(Label1.Caption) - 1) _ & Left$(Label1.

Caption, 1) End Sub

ProgressBar1.Value = ProgressBar1.Value + 3 If ProgressBar1.Value = 99 Then Unload Me Form1.Show End If

You might also like