I want to enable a "Cancel Update/Add" button and Save button when a user makes any change to a record. Is there anyway to know when a user begins editing a record besides TextChanged and similiar events I have tried the RowChanged/ing of the Datatable and other events with no luck.
Thanks
Simmy

Record Begin Edit Event
Tihomir Ignatov
Hope this helps!
Simmy
troy anderson
Please let me know, I've posted this inquiry in several forums but not getting any response.
Thank you.
Rick..
Mark q jones
Lisha
rfreire
CType(_CM.Current, DataRowView).Row.HasVersion(DataRowVersion.Proposed)"
That doesn't trigger an event does it
clevershark
In the event handlers for the controls that can change the form state, call that state setting method.
Events you will be interested in:
TextBox - TextChanged or Validating
ComboBox - TextChanged, SelectedIndexChanged, or Validating
DataGridView - CurrentCellDirtyStateChanged
Scott Conrad
Simmy
Nasyua
StanoB
Judge Dregg wrote:
"But I think I've found a way. The documentation on DataRowVersion says:
After invoking BeginEdit on a DataRow, any edited value becomes the Proposed value. Until either CancelEdit or EndEdit is invoked, the row has an Original and a Proposed version.
So given that BeginEdit is implicitly called somewhere along the way, the following will return true when a row has been edited:
CType(_CM.Current, DataRowView).Row.HasVersion(DataRowVersion.Proposed)"