Hello im making this xml reader that outputs links to listbox, the xml code is like this.
<item>
<title>file1</title>
<category>myfiles</category>
<link>http://google.com</link>
</item>
<item>
<title>file2</title>
<category>myfiles</category>
<link>http://yahoo.com</link>
</item>
My code looks like this, it works but i would like that i could click the File1 in listbox and it would work like link.
now i just outputs like this. "file1myfileshttp://google.com"
Private Sub Label3_Click(sender As Object, e As EventArgs) Handles Label3.Click
ListBox2.Items.Clear()
Dim doc As New System.Xml.XmlDocument
doc.Load("http://mysite.com/myxml.xml")
Dim List = doc.GetElementsByTagName("item")
For Each item As System.Xml.XmlElement In List
ListBox2.Items.Add(item.InnerText)
Next
End Sub