-
Recordset Changed
I have a form which is has about 50 fields on it, all of them a linked to a Datasource and a Datafield from a recordset. Is there any easy way of detecting whether something has been changed without having to put a line of code in the change event of every text box ?
Work is necessary for man. Man invented the alarm clock.
-
Re: Recordset Changed
If your textBoxes are in a control array, then there is only one Change event for all 50. This change event and all other events associated with the textboxes uses an index value to support the 50.
John G
-
Re: Recordset Changed
There's a DataChanged property on bound controls that can determine if the user has made a change to the original data.