tracking changes in a recordset
I had already had a look at this solution but I have a lot of text boxes, and hoped to:
1. Bind each text box to the relevant field in a recordset.
2. When attempting to perform an action check if the data in the control has changed by using datachanged property, whcih according to MS documentation says:
"When a data control moves from record to record, it passes data from fields in the current record to controls bound to the specific field or the entire record. As data is displayed in the bound controls, the DataChanged property is set to False. If the user or any other operation changes the value in the bound control, the DataChanged property is set to True. Simply moving to another record doesn't affect the DataChanged property."
When I check for datachanged, if nothing has changed it continually returns true.