Thanks a lot for your help!Bill
'-- Now update each of the columns within the new row. You may want to test' on certain column names to be excluded, such as PK fields.For each col as DataColumn In MyBo.CurrentDataTable.Columns MyBo.Items(col.ColumnName) = copyRow.Item(col.ColumnName) Next
I didn't run this to make sure that the copyRow didn't move (I just typed it in here) but it should be close enough to get you going.
Thanks,Bill