G
Guest
I have a DataSet.DataTable already loaded with values that I want to search for some information. What is the best way to go about doing it. Basically I want to know what DataSet.DataTable.Rows(intSomeRow).Item("Name") is when DataSet.DataTable.Rows(intSomeRow).Item("ID") = SomeID. I know I can do a For Each DataRow to loop and look for a matching ID. Is that the best way?