murray83
Games Collector
- Local time
- Today, 00:52
- Joined
- Mar 31, 2017
- Messages
- 818
tying to get a vertical scroll going a bit like this
Scrolling Marquee Text to Your Microsoft Access Forms but on searching not found anything like it, can it even be done as i have done a horizontal sort of thing, with code i found online before which i have used here below
but just wondered if i could do a vertical scroll like at the credits for a film/game or tv show
Scrolling Marquee Text to Your Microsoft Access Forms but on searching not found anything like it, can it even be done as i have done a horizontal sort of thing, with code i found online before which i have used here below
Code:
Private Sub Form_Load()
i = 0
Me.TimerInterval = 200
ca = "The Mystery Of" 'Me.animate_Label1.Caption
End Sub
Private Sub form_timer()
If i < Len(ca) Then
i = i + 1
Me.animate_Label1.Caption = Left(ca, i)
Else
Me.imgLogo.Visible = True
Me.TimerInterval = 0
End If
End Sub
but just wondered if i could do a vertical scroll like at the credits for a film/game or tv show