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.
 

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

Similar Threads

No Spell Check in Access 2007 29
Spell check 6
Spell check on access with out message box 3
Spell Checker 22
Spell Check not available in Access 2003 runtime 4
Spell checker 3
Windows Vista Spell check 1
Office 2007 Spell Check Not Working 1

Top