Dataview results must save in to .xml file only

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top