|
-
Apr 22nd, 2001, 06:23 PM
#1
How can I have the Inet control download all urls in a text file
-
Apr 23rd, 2001, 07:00 AM
#2
Open "filename" for input as #1
Do until EOF(1)
input #1, urln
inet1.openurl (urln)
Loop
Close #1
msgbox "Enjoy!"
-
Apr 23rd, 2001, 07:04 AM
#3
Code:
Open "filename" for input as #1
Do until EOF(1)
input #1, urln
inet1.openurl (urln)
Loop
Close #1
msgbox "Enjoy!"
-
Apr 23rd, 2001, 07:09 AM
#4
New Member
I am pretty sure that the way you'd want to go about doing this is just open the URL with the Internel Transfer Control like
Inet1.OpenURL ("http://whatever.url.youwant")
Set that equal to something like ResponseList
ResponseList = Inet1.OpenURL ("http://whatever.url.youwant")
Then you need to parse the ResponseList for the URLs and write them to a file.
I don't think you can directly just say get the URLs out of the file though.
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
|