Hi, Thanks for you time. I want to populate a datagridview with records from an XML document. I can get all the records in the grid using the following code
Dim filePath as String = "c:\path\XML.XML"
Me.dsRecords.ReadXML(filePath)
dgvRecords.DataSource = dsRecords
dgvRecords.DataMember = "XML"
How do I get only records that match a certain criteria in the datagridview?
I also want to sort the grid?
Thank you for your help
joe
Dim filePath as String = "c:\path\XML.XML"
Me.dsRecords.ReadXML(filePath)
dgvRecords.DataSource = dsRecords
dgvRecords.DataMember = "XML"
How do I get only records that match a certain criteria in the datagridview?
I also want to sort the grid?
Thank you for your help
joe