Results 1 to 2 of 2

Thread: lisbox question

  1. #1
    egiggey
    Guest

    lisbox question

    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

  2. #2
    Hyperactive Member techman2553's Avatar
    Join Date
    Mar 2001
    Location
    <- To your left.
    Posts
    362
    Try this:

    Code:
      Dim URLAddress As String
      Do While List1.ListCount > 0
        URLAddress = List1.List(0)
        '
        '
        'Download (From) URL
        '
        '
        List1.RemoveItem (0)
      Loop
    ----------

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