I am using a checkbox in one of my columns. the user could check any number of rows (or uncheck them). What would be the best way to know if any cells in this column have changed data?
If you need to take immediate action, your best bet is to use the CellChange event and look at the cell.EditorResolved.Value (as outlined in this thread). If you want to wait until later, you could look at the AfterCellUpdate or AfterRowUpdate events.
-Matt
Matt,
thanks for the info.
I am aware of those events. But in this particular form the user will be filtering invoiced data, checking/unchecking some invoices, choosing a different filter and checking/unchecking some more invoices. The user is filtering invoices for many different salesmen and I need them to know if they have checked/unchecked ANY invoice. They may be interupted at any point and forget what they have done for a previous filter. I want to activate a button on the toolbar if there are any checkboxes that have been changed from its original value. That way, they will know that they have invoices that have been changed.
-duane