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.