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.
Heres example from my xml
Code:
ListBox2.Items.Clear()
Dim doc As New System.Xml.XmlDocument
doc.Load("http://myxml.xml")
Dim List = doc.GetElementsByTagName("title")
For Each item As System.Xml.XmlElement In List
ListBox2.Items.Add(item.InnerText)
Heres example from my xml
Code:
<title>OpenOfficeTorrent</title> <link>http://mytorrent.com/openoffisce</link>