Spell Check

  • Thread starter Thread starter jwebster1979
  • Start date Start date
J

jwebster1979

I want to have a text box that is serving as a "notes box" that is feeding a
subform to spellcheck automatically before it transfers to my subform.
Basically I want spell check to run before I send the information.
 
Here's a function that you can call in the AfterUpdate event of the textbox:

Private Sub txtWhatever_AfterUpdate()
On Error Resume Next
With Me.txtWhatever
.SetFocus
.SelStart = 0
.SelLength = Len(Me.txtWhatever)
DoCmd.RunCommand acCmdSpelling
End With
End Sub
 
"jwebster1979" <jwebster1979@discussions.microsoft.com> escribió en el
mensaje de noticias
news:39EAE678-DBC7-4E53-B807-F88B0FEB135A@microsoft.com...
 
Back
Top