Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to loop through items in a listbox ? 1

Status
Not open for further replies.
Apr 28, 2006
69
NL
Hi all i got a list of urls in a listbox i want to loop trough the listbox and for each listbox item i do inet1.openURL. But i do not know how i can loop trought items in listbox. I be happy if some one show me how.Thanks


Code:
Private Sub Command1_Click(Index As Integer)

Select Case Index
    Case 0:
        If txtURL.Text <> "" Then
        
      
            RichTextBox1.Text = Inet1.OpenURL(txtURL.Text, icString)
                   End If
    
    Case 1:
        End
End Select
End Sub
 
dim i as integer
for i = 0 to list1.listcount
'Do your stuff
next
 
Oh my..., I see you have been busy on the forums today. I suggest you do a search on this forum as johnwm suggests before making any more threads on the looping subject.

matt
 

MattSTech, should it be:

Code:
Dim i as integer
for i = 0 to list1.listcount [b]- 1[/b]
    'Do your stuff
next

???

---- Andy
 
andrezejek thanks for u reply . Could u tell me how to used the pull item inside this inet.openURL fuction?


RichTextBox1.Text = Inet1.OpenURL(?????????)
 
Code:
Dim i as integer
For i = 0 to list1.Listcount - 1
    RichTextBox1.Text = Inet1.OpenURL(List1.List(i))
Next
although that will replace the contents of the rich text box with every call to OpenURL.

[small]No! No! You're not thinking ... you're only being logical.
- Neils Bohr[/small]
 
Andrzejek. Yes
off by one error caught me in a rush. Always seems the case.

thanks

Matt
 
Tnanks for the complement, star goes to Golom anyway :)

--- Andy
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top