P
Pamela
I have a cmd button on my form to run spell check. Was given this original
code:
Private Sub Command108_Click()
DoCmd.RunCommand acCmdSpelling
End Sub
But that checks ALL records... then was told to add:
DoCmd.RunCommand acCmdSelectRecord
above the DoCmd.RunCommand acCmdSpelling line but when I test it by
misspelling simple words in the record, it doesn't find them - just states
Spell Check Complete.
Any ideas?
Thanks!
~Pamela
code:
Private Sub Command108_Click()
DoCmd.RunCommand acCmdSpelling
End Sub
But that checks ALL records... then was told to add:
DoCmd.RunCommand acCmdSelectRecord
above the DoCmd.RunCommand acCmdSpelling line but when I test it by
misspelling simple words in the record, it doesn't find them - just states
Spell Check Complete.
Any ideas?
Thanks!
~Pamela