thanks for the link, but I'm getting stuck on the line below:
Scrolltext = Mid([Strfield], astr, Len([Strfield])) & " " & Left([Strfield], astr)
The code from the link is:
'start paste
Private Static Function Scrolltext(strfield As String) As String
'call from on timer event
Dim astr As Integer
Dim TextLen As Integer
astr = astr + 1
TextLen = Len(strfield)
If astr >= TextLen Then astr = 1
Scrolltext = Mid([Strfield], astr, Len([Strfield])) & " " & Left([Strfield], astr)
Me!Text81.Text = Scrolltext("Hello World") 'Refer to the unbound text box
End Function
Private Static Function SpellOut(strMessage As String) As String
Dim iCount As Integer
Dim iLen As Integer
iLen = Len(strMessage)
If iCount >= iLen Then iCount = 1
SpellOut = Left(strMessage, iCount)
iCount = iCount + 1
End Function
Scrolltext = Mid([Strfield], astr, Len([Strfield])) & " " & Left([Strfield], astr)
The code from the link is:
'start paste
Private Static Function Scrolltext(strfield As String) As String
'call from on timer event
Dim astr As Integer
Dim TextLen As Integer
astr = astr + 1
TextLen = Len(strfield)
If astr >= TextLen Then astr = 1
Scrolltext = Mid([Strfield], astr, Len([Strfield])) & " " & Left([Strfield], astr)
Me!Text81.Text = Scrolltext("Hello World") 'Refer to the unbound text box
End Function
Private Static Function SpellOut(strMessage As String) As String
Dim iCount As Integer
Dim iLen As Integer
iLen = Len(strMessage)
If iCount >= iLen Then iCount = 1
SpellOut = Left(strMessage, iCount)
iCount = iCount + 1
End Function