Hello
I hve a primary key defined on a DataTable in a DataSet. When I create
a new row in the table I give the primary key a default value from the
database but then want the user to be able to update it (i.e. specify
a different value from the default). The problem is that the
DataTable.Rows.Find() and DataTable.Select() methods seem to work off
of the original value rather than the new one. Is there a way of
getting either Find or Select to return the current value? I've tried
the DataViewRowState parameter on the Select, but this doesn't work.
Steve
|