Spell Command

  • Thread starter tobesurveyor via AccessMonster.com
  • Start date
T

tobesurveyor via AccessMonster.com

Hello all-

Is there any way when you run a spell check on text boxes to not have the
popup "The Spelling Check is Complete". I would rather it only shows the
correction pop-up if the spelling is wrong in a text box.

Is this possible?

Thanks in advance,
Chris
 
M

Marshall Barton

tobesurveyor said:
Is there any way when you run a spell check on text boxes to not have the
popup "The Spelling Check is Complete". I would rather it only shows the
correction pop-up if the spelling is wrong in a text box.


Do it in VBA using this kind of code:

With Me.sometextbox
.Setfocus
,SelStart = 0
.SelLength = 32000
Docmd.SetWarnings false
DoCmd.Runcommand acCmdSpelling
Docmd.SetWarnings true
End With

That is most likely insufficient by itself. If you need
further assistance, please provide more specific information
anout what you are trying to do.
 
Top