|
-
Nov 18th, 1999, 07:16 AM
#1
Thread Starter
New Member
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, 09:08 AM
#2
What is the actual web page link and what is the piece of data you need?
-
Nov 28th, 1999, 06:05 AM
#3
Addicted Member
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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|