Spell check

W

Warrio

Hello!

Is it possible to include a spell check into MS Access like in word? so the
user clicks on a button and uses the common dialog the MS Office to check a
textbox or a the text that is in the form?

Thanks for any suggestion
 
J

Jonathan Parminter

-----Original Message-----
Hello!

Is it possible to include a spell check into MS Access like in word? so the
user clicks on a button and uses the common dialog the MS Office to check a
textbox or a the text that is in the form?

Thanks for any suggestion


.
Hi Warrio,
use the following as an example to check the spelling in a
control named 'Address'.

Private Sub Command45_Click()
With Address
.SetFocus
.SelStart = 0
.SelLength = Len(.Text)
End With
RunCommand acCmdSpelling
End Sub

Hope this helps...

Luck
Jonathan
 

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

Top