This seems simple. Just making sure this is ok. I want to set one datarow equal to another datarow. Is the following all I need to do to make all columns in the DisplayDataRow = all of the columns in the WorkDataRow, or must I iterate through the row column by column setting them equal to each other? The datarows were created from the same table of a dataset.
Auguy
Sylvania, Ohio
Code:
' Set display row = work row
DisplayDataRow = WorkDataRow
Auguy
Sylvania, Ohio