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
Printable View
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
What is the actual web page link and what is the piece of data you need?
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!"