Originally Posted by nacho2
Ok great that's what I needed.
Now one more thing, what if I don't know the row index? Let's say it is a table of customers having each customer an IdCustomer. How can I get the row index that corresponds to the row with the IdCustomer I have?
I've tried doing:
DataSchema1.Clientes.Select("IdCustomer=" & var)
DataSchema1.Clientes.Rows(0)("Name") = "NewName"
DataSchema1.WriteXml("..\Data.xml")
I did the select first thinking that that would leave DataSchema1.Clientes with only the row with IdCustomer= var but I guess I would have to store it somewhere, and not just the method.
So then I thought there may be some method to get the row index of certain row.
Any ideas?
Thanks