Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Access Form Text Box spelling chech 1

Status
Not open for further replies.

walejo89

Programmer
Jan 28, 2005
43
US
Hi I need to be able to make an access textbox to check spelling using vba, I want to be able to do what word does when a word is mis spelled underlines the word with a red line. Any help will be appriciated.

Wilfer
 
You can spell check with VBA:

Private Sub Command0_Click()
DoCmd.RunCommand acCmdSpelling
End Sub


To do it like Word, you may have to insert a Word object into your form instead of a text field.

Sam_F
"90% of the problem is asking the right question.
 
How do you insert a word object in the form, please need some help.
 
Put the form in design view, click on the Insert menu, then Object, then New, then select Microsoft Word.

HTH

Sam_F
"90% of the problem is asking the right question.
 
Thanks sfreeman, now I need to be able to read the text from this word object in put it on a array as soon as i click the find button.
thanks for all your help.
wilfer
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top