Rizwan Atique
September 18th, 2001, 04:31 PM
Has anyone done anything on creating stock ticker in vb?
I need some suggestions on how to go about doing that?
Thanks..
I need some suggestions on how to go about doing that?
Thanks..
|
Click to See Complete Forum and Search --> : Stock Ticker Rizwan Atique September 18th, 2001, 04:31 PM Has anyone done anything on creating stock ticker in vb? I need some suggestions on how to go about doing that? Thanks.. DSJ September 18th, 2001, 04:40 PM 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 codeguru.com
Copyright Internet.com Inc., All Rights Reserved. |