spell check

  • Thread starter Thread starter Pass-the-Reality
  • Start date Start date
P

Pass-the-Reality

On my comments field I have added VB code to the After Update. The code is
DoCmd.RunCommand acCmdSpelling. The issue I have is the Spell Check does
not just apply to the form I have up. Once it spell checks the record I have
open, it then goes to the next record and tries to spell check it and so
on..... What do I need to add to my VB code so that it only spell checks the
loaded form.


Private Sub Answer_AfterUpdate()
DoCmd.RunCommand acCmdSpelling
End Sub
 
Back
Top