R
Rolf Welskes
Hello,
I have the following problem:
I have a table and in this I have rows say:
Name, PreName, street. as fields.
Now a have a row for example:
Smith, John, new street 5 .
Now I make a change to this row to:
Smith, Harry, .....
Now I can get this row for example with table.Select.
But I want the unchanged row:
I have tried:
table.Select(null, null, DataViewState.ModifiedCurrent);
and I have tried
table.Select(null, null, DataViewState.ModifiedOriginal);
in both cases, yes, I get the row witch was modified, but in both cases I
get the changed row.
I want the row witch was changed, but the orignal before changing.
How to do this.
Thank you for any help.
Rolf Welskes
I have the following problem:
I have a table and in this I have rows say:
Name, PreName, street. as fields.
Now a have a row for example:
Smith, John, new street 5 .
Now I make a change to this row to:
Smith, Harry, .....
Now I can get this row for example with table.Select.
But I want the unchanged row:
I have tried:
table.Select(null, null, DataViewState.ModifiedCurrent);
and I have tried
table.Select(null, null, DataViewState.ModifiedOriginal);
in both cases, yes, I get the row witch was modified, but in both cases I
get the changed row.
I want the row witch was changed, but the orignal before changing.
How to do this.
Thank you for any help.
Rolf Welskes