How to do marqueeing some text in VB?
Please help.
Please help.
Private Sub Timer1_Timer()
lblName.Caption = Mid(strActualValue, InStr(1, strActualValue, Trim(lblName.Caption)) + 1, 5)
End Sub
Dim strActualValue As String
Private Sub Form_Load()
strActualValue = "123456789012345678901234567890"
End Sub
Private Sub Timer1_Timer()
lblName.Caption = Mid(strActualValue, InStr(1, strActualValue, Trim(lblName.Caption)) + 1, 5)
End Sub
Comment