PDA

Click to See Complete Forum and Search --> : internet programming


Cheng Tai Ip
Nov 18th, 1999, 06:16 AM
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

Nov 19th, 1999, 08:08 AM
What is the actual web page link and what is the piece of data you need?

vbsquare
Nov 28th, 1999, 05:05 AM
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!"