i have 9 mb xml

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

Guest

iam using vb.net vs 2003 .net Cf1
dim ds as new dataset
ds.readxml("1.xml")


1.xml is 9 mb
It is taking soooo long time to read.
after that i need to search all some filed using...
iam using this code

Dim dv1 As New DataView(ds.Tables(0))
dv1.RowFilter = "buil_id='" & building.SelectedItem.ToString & "'"
If dv1.Count = 0 Then
MsgBox("Sorry No data Found!!")
End If
Me.Text = "Total Rows: " & dv1.Count

DataGrid1.DataSource = dv1

how to make fast loading... pls suggest me. thanks
 
Back
Top