i have a list box that contains urls what I need to do is put each url into a variable for download and then remove the item
any ideas
Printable View
i have a list box that contains urls what I need to do is put each url into a variable for download and then remove the item
any ideas
Try this:
Code:Dim URLAddress As String
Do While List1.ListCount > 0
URLAddress = List1.List(0)
'
'
'Download (From) URL
'
'
List1.RemoveItem (0)
Loop