I have a bound form for users to add records to a table.
When a record is saved, the user may opt to view results of several calculations based on the saved record and may want to print the calculated data to another table and/or print it out.
I have set a command button on the form which I want to enable once the user has finished entering data, i.e. when the record is saved.
In bound forms, the record is normally saved when the user navigates away from the record, but I want to enable the command button immediately after saving and BEFORE the user navigates away from the page.
The logical approach would be to intercept the form's AFTERUPDATE event. Or to provide the user an option to manually SAVE the record, although it is on a bound form. Can we use code to save a record on a bound form?