displaying additions upadtes

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

I need to display rows that have been updated AND added to a dataTable.

I can use a dataviewto filter for ModifiedCurrent or Added, but how can I
combine the results so as to be able to view them all?

I have also tried using a dataset that has received rows from a
dataSet.GetChanges method, but I find when I bind this to a datagrid, & run
it from the ColumnsChanged event of the Dataset, it shows the changed row
only after the *next* change. Why is this so?

Any ideas would be appreciated. Thanks
Ant
 
Ant said:
Hi,

I need to display rows that have been updated AND added to a dataTable.

I can use a dataviewto filter for ModifiedCurrent or Added, but how can I
combine the results so as to be able to view them all?

I think you can combine DataViewRowState values because they are flags.
 
Back
Top