Undo & Spell Check - both Main & Subform

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)
 
J

John Vinson

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]
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top