Sep 22, 2003 #1 T trantt Member Joined Aug 10, 2003 Messages 5 is it a way that I can get the current row from a DataTable object? Example: oRowTarget = oDataTable.Rows.Find(oPrimObj) Once I located the row that Im looking for (by using .Find function), I would like to be able to modify it. Thanks
is it a way that I can get the current row from a DataTable object? Example: oRowTarget = oDataTable.Rows.Find(oPrimObj) Once I located the row that Im looking for (by using .Find function), I would like to be able to modify it. Thanks
Sep 22, 2003 #2 J JABE Well-known member Joined Jun 24, 2003 Messages 375 Location Philippines [VB] Dim row() As DataRow = oDataTable.Select("Field=FilterCondition") -Manipulate row(0) here... [/VB]
[VB] Dim row() As DataRow = oDataTable.Select("Field=FilterCondition") -Manipulate row(0) here... [/VB]