CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Thread: Stock Ticker

  1. #1
    Join Date
    Sep 2001
    Posts
    23

    Stock Ticker

    Has anyone done anything on creating stock ticker in vb?
    I need some suggestions on how to go about doing that?
    Thanks..


  2. #2
    Join Date
    Jun 2001
    Location
    MO, USA
    Posts
    2,868

    Re: Stock Ticker

    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








Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured