I have a MDI database application. Text Boxes on a child form are linked to an ADO recordset. I want to update the MDI menu to highlight 'Save Changes' when I change data in one of the linked text boxes.
In most instances I can use the validate event to detect changes. However, as this event is only fired when the text box loses focus my menu is not updated when text is changed if I don't move focus.
I don't want to use on change as this event is triggered every time I move to the Next or Previous record in the recordset
In most instances I can use the validate event to detect changes. However, as this event is only fired when the text box loses focus my menu is not updated when text is changed if I don't move focus.
I don't want to use on change as this event is triggered every time I move to the Next or Previous record in the recordset