There are many examples of reading an xml file and populating a datagridview. I would like to pull the xml from a string instead.
Dim myXMLfile As String = "C:\tmp\accountlist.xml"
Dim ds As New DataSet()
ds.ReadXml(myXMLfile)
DataGrid1.DataSource = ds
DataGrid1.DataMember = "account"
The above code works when the xml data is read from a file. I cannot figure out how to read the xml from a string and get it to work.
Dim myxml as string
myxml = "<response><item><acct>1001</acct></item><item><acct>1002</acct></item></response>"