I have a datagridview on my form called "mainGrid" and im not very good with XML buti found a small example to load but not one to save
I wondered if there was a equally simple way to save! Heres the loading code:
Private Sub loadGrid()
Dim ds As DataSet = New DataSet
ds.ReadXml("C:\x\tsst.xml")
Dim dv As DataView = New DataView(ds.Tables(0))
mainGrid.DataSource = dv
End Sub
as you can see it is very simple and i didnot have to manually do anything i was wondering if it was the same for saving or if not how i could do it thanks
any questions etc. just ask i will reply!