how to get hyperlink from xml to listbox

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • TheGoffy
    New Member
    • Mar 2014
    • 1

    #1

    how to get hyperlink from xml to listbox

    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")
            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>
    Last edited by Rabbit; Mar 13 '14, 04:28 PM. Reason: Please use [code] and [/code] tags when posting code or formatted data.
Working...