Can anyone help me please.

I have the following code in

t Code:
  1. Private Sub Form_Load()
  2. FileName = App.Path & "/urls.txt"
  3. Dim Favs
  4. Open FileName For Input As #1
  5. Do While Not EOF(1)
  6. Line Input #1, Favs
  7. List1.AddItem Favs
  8. Loop
  9. Close #1
  10. End Sub

All the urls that are saved in to urls.txt are displayed on the listbox how do i get it so when someone clickson the url it then takes them to that page on my web browser its going to be like favs soon can anyone help please.