Spell Checking in Access 2002

D

Denny G.

Access 2002. How can I get the spell checker to limit
its check to a specific text/memo field for a specific
record in a form. Currently, the spell checker, when
activated, wants to check every text/memo field in every
record in the entire open form. Thanks.
 
M

Marshall Barton

Denny said:
Access 2002. How can I get the spell checker to limit
its check to a specific text/memo field for a specific
record in a form. Currently, the spell checker, when
activated, wants to check every text/memo field in every
record in the entire open form.


To do that, you have to select the text you want to spell
check:

thetextbox.SetFocus
thetextbox.SelStart = 0
thetextbox.SelLength = Len(thetextbox)
DoCmd.RunCommand acCmdSpelling
 
D

Denny G.

Thanks, Marshall. I will give it a try.

-----Original Message-----



To do that, you have to select the text you want to spell
check:

thetextbox.SetFocus
thetextbox.SelStart = 0
thetextbox.SelLength = Len(thetextbox)
DoCmd.RunCommand acCmdSpelling
 

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

Spell Checking in Forms 1
Spell Check specific fields on a subform 2
spell checker gone wild! 1
Spell checker broken 5
Spell Check Help 2
Spell Checker 2
Controlling Spell Checker 26
Spellcheck a field 4

Top