B
bladelock
I have this code in the AfterUpdate in a TextBox set for a memo:
If Len(Me!casefacts & "") > 0 Then
DoCmd.RunCommand acCmdSpelling
Else
Exit Sub
End If
everytime the spell check executs, it check the whole form. How can I get it
to just check that one textbox and not everything else.
If Len(Me!casefacts & "") > 0 Then
DoCmd.RunCommand acCmdSpelling
Else
Exit Sub
End If
everytime the spell check executs, it check the whole form. How can I get it
to just check that one textbox and not everything else.