Spell check

  • Thread starter Thread starter Warrio
  • Start date Start date
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
 
-----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
 
Back
Top