Results 1 to 3 of 3

Thread: internet programming

  1. #1

    Thread Starter
    New Member
    Join Date
    Nov 1999
    Posts
    1

    Post

    How do I retrieve data from a web page (such
    as s$p500 index from CNN) to use it in my
    VB program ? Any help is greately appreciated

  2. #2
    Guest

    Post

    What is the actual web page link and what is the piece of data you need?

  3. #3
    Addicted Member
    Join Date
    Jan 1999
    Posts
    173

    Post

    Use this:

    Dim b() AS byte
    Dim strData as string
    dim intCount as integer

    b()=inet1.openurl("myurl.com",icByteArray)
    For intCOunt=0 to UBound(b)-1
    strData=strData & CHr(b(intCount))
    Next

    ------------------
    "To the glory of God!"

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