Bandenjamin
Programmer
I know there are already a hundred posts about spell check here but I couldn't find an answer for the last part of my issue. I have a form that has multiple text boxes. On exiting a particular box I want to have it spell check that box, but ignore the others. Right now I have the following code on after update
Private Sub ReviewerComments_AfterUpdate()
Me.ReviewerComments.SetFocus
DoCmd.RunCommand acCmdSpelling
End Sub
The spell check is launching fine, however, it jumps to the other two fields as well, which I do not want.
Suggestions?
Thanks,
Dan
Private Sub ReviewerComments_AfterUpdate()
Me.ReviewerComments.SetFocus
DoCmd.RunCommand acCmdSpelling
End Sub
The spell check is launching fine, however, it jumps to the other two fields as well, which I do not want.
Suggestions?
Thanks,
Dan