Undo & Spell Check - both Main & Subform

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How can I click ONE button to undo both the main & subform? (different tables)

How can I click ONE button to spellcheck both the main & subform? (different
tables)
 
How can I click ONE button to undo both the main & subform? (different tables)

By running a Delete query on all of the subform tables, and then
deleting the mainform record. It's too late to undo once you have
typed any single character into any subform - the main form record is
saved to disk at that point. Similarly, the Subform record is saved
when you move off the subform.
How can I click ONE button to spellcheck both the main & subform? (different
tables)

Write VBA code to open a Recordset based on all of the tables that you
want to spellcheck; step through the records, and spell check each one
individually. You cannot do it on the Form, because the data you're
trying to spell check isn't on the Form.

John W. Vinson[MVP]
 
Back
Top