'load xml into a dataset to use here
Dim dSet As New DataSet
Dim fs As FileStream
'open the xml file so we can use it to fill the dataset
Try
fs = New FileStream("C:\someXMLfile.xml, FileMode.Open)
Catch e As Exception
Debug.WriteLine(e)
End Try
'fill the dataset
Try
dSet.ReadXml(fs)
Catch ex As Exception
Debug.WriteLine(ex)
Finally
fs.Close()
End Try




