Has anyone done anything on creating stock ticker in vb?
I need some suggestions on how to go about doing that?
Thanks..
Printable View
Has anyone done anything on creating stock ticker in vb?
I need some suggestions on how to go about doing that?
Thanks..
This code compliments of shree from an earlier post...
private Sub Form_Load()
Timer1.Interval = 200
me.Caption = "Why in the world would you want to distract your users like this? "
End Sub
private Sub Timer1_Timer()
Dim aStr as string
aStr = me.Caption
aStr = mid$(aStr, 2) & Left$(aStr, 1) me.Caption = aStr
End Sub