how about scrolling text
In the forms ontimer event paste this code
Private Sub Form_Timer()
Dim textlen As Integer, textstr As String
Dim strfield As Variant
Static astr As Integer
strfield = "hello world" & "" 'replace text with what ever you want
textlen = Len(strfield)
astr = astr + 1
If astr >= textlen Then astr = 1
textstr = Mid([strfield], astr, Len([strfield])) & " " & Left([strfield], astr)
Me.yourlabel.caption = textstr 'replace name here
End Sub
and then
set the forms timer interval property to around 500