S
Souris
I want to have running text on the status bar.
Any example to do this?
Your information is great appreciated,
Any example to do this?
Your information is great appreciated,
Souris said:I want to have running text on the status bar.
Any example to do this?
Marshall Barton said:If "running text" means a banner type if thing, then a form
can manage it with code like:
Private Sub Command0_Click()
If Me.TimerInterval > 0 Then
Me.TimerInterval = 0
Else
Me.TimerInterval = 200
End If
End Sub
Private Sub Form_Timer()
Static pos As Integer
pos = pos + 1
If pos > Len(Me.Text1) Then pos = 1
SysCmd acSysCmdSetStatus, Mid(Me.Text1 & " " _
& Me.Text1, pos, Len(Me.Text1))
End Sub
Souris said:Thanks for the message,
I tried from 100 to 2000. They are same speed.
It seems that the intervaltimer does not affect the speed of running, but
it
afffects the even fired.
The speed of running is affected by the length of string.
Please let me know if I am wrong.