DavidTigerch
MIS
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