Spell Command

  • Thread starter Thread starter tobesurveyor via AccessMonster.com
  • Start date 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
 
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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top