this code was just working! but for some reason it stopped to work now. when i run this project the following code is supposed to execute but it does not! please help.
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim xmldoc As New System.Xml.XmlDocument()
'Load from file
xmldoc.Load("http://sites.google.com/site/shadchanproject/Home/lots1.xml")
'Get a list of all the child elements
Dim nodelist As XmlNodeList = xmldoc.DocumentElement.ChildNodes
'Parse through all nodes
For Each outerNode As XmlNode In nodelist
ListBox1.Items.Add(outerNode.Name)
Next
End Sub