Scrolls text in a forms title bar
Scrolls text in a forms title bar
Rate Scrolls text in a forms title bar
(1(1 Vote))
Private Sub Form_Load()
Dim SpaceNums As Integer
Timer1.Interval = 50
SpaceNums = Int(Me.Width / 50)
Me.Caption = "HELLO" & Space(SpaceNums) & "|"
Timer1.Enabled = True
End Sub
Private Sub Timer1_Timer()
Me.Caption = Right(Me.Caption, Len(Me.Caption) - 1) & Left(Me.Caption, 1)
End Sub
Scrolls text in a forms title bar Comments
No comments yet — be the first to post one!
Post a Comment