Dataview results must save in to .xml file only

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

dim ds1 as new dataset
ds1.readxml("dd.xml")

Dim dv1 As New DataView(ds1.Tables(0))
dv1.RowFilter = "build='" & ComboBox1.SelectedItem.ToString & "'"

they are 20 rows after searching
and i want the results to be stored in .xml file
i want only the searched results only to be stored in another .xml file

pls help me
thanks
 
Back
Top