hi, im making this torrent rss feed reader, and i want to get torrent title and link to listbox from xml file, and i want the list box item to be clickable link. i have tried this but how can i get the link to be clickable.


Code:
  ListBox2.Items.Clear()
        Dim doc As New System.Xml.XmlDocument
        doc.Load("http://myxml.xml")
        Dim List = doc.GetElementsByTagName("title")
...