Results 1 to 2 of 2

Thread: OpinionsNeeded

  1. #1
    egiggey
    Guest

    OpinionsNeeded

    is it possible to create an array using the inet control to start and download more than 1 web page at the same time ?

  2. #2
    Frenzied Member jjortiz's Avatar
    Join Date
    Mar 2001
    Location
    NYC
    Posts
    1,768
    Set the index to the control then do something like this. This is assuming that there is a list box
    Code:
        Dim iCounter As Integer
        For iCounter = 0 To lstURLs.ListCount - 1
            Inet1.Item(iCounter).Execute (lstURLs.List(iCounter))
        Next
    offcourse there is other parameters involved in the inet.excute control, but i am pretty sure you can figure that out. All you have to do is increase the index of the inet control as you can see i am doing it with the for loop. That shoulde work just fine. You can do the testing inside there or write a function that you can call from within the loop and pass the url, index that you want to give the inet control. I hope this answers your question.

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