Results 1 to 4 of 4

Thread: Inet control Question

  1. #1
    egiggey
    Guest
    How can I have the Inet control download all urls in a text file

  2. #2
    rsitogp
    Guest
    Open "filename" for input as #1
    Do until EOF(1)
    input #1, urln
    inet1.openurl (urln)
    Loop
    Close #1
    msgbox "Enjoy!"

  3. #3
    rsitogp
    Guest
    Code:
    Open "filename" for input as #1
    Do until EOF(1)
     input #1, urln
     inet1.openurl (urln)
    Loop
    Close #1
    msgbox "Enjoy!"

  4. #4
    New Member
    Join Date
    Apr 2001
    Posts
    12
    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
  •  



Click Here to Expand Forum to Full Width