CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Sep 1999
    Location
    India
    Posts
    1

    Information from the Net

    I want to connect to a particular site like a
    stock exchange for the share value or want to get
    the updates of currency value fromt the net ( for example, from Reuters ). For every regular period of time, my VB screen has to be updated.
    Can anybody suggest me something about this.

    Thanx in Advance
    Poornima



  2. #2
    Join Date
    May 1999
    Posts
    3,332

    Re: Information from the Net

    be careful: you are going to have copyright problems with that.
    I developped a solution that was based on the Internet Transfer control.
    Use the openUrl method to get the complete page in one string.
    Then parse that string to find the stock rate information. That's the nasty part. No matter where you are going to get your info from, they WILL change the page layout and your parsing logic will break. I have experienced that many times.

    There are also sites out there that have text-only downloadable information pages. These are easier to parse and faster to download.

    Again, both approaches are not clean with regard to copyright.


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