Grammer check in Access 2010 (1 Viewer)

epiek

Registered User.
Local time
Today, 19:15
Joined
Jul 25, 2011
Messages
35
I used the code below effectively to check spelling in a specific control. How do I check grammar. Need this urgently:)

Private Sub ReviewComment_LostFocus()
Rem If the textbox contains data run the
Rem Spell Checker after data is entered.
DoCmd.SetWarnings False
With Me!ReviewComment
.SetFocus
.SelStart = 0
.SelLength = Nz(Len(Me.ReviewComment), 0)
If Nz(Len(Me!ReviewComment), 0) > 0 Then Me!ReviewComment.SetFocus: DoCmd.RunCommand acCmdSpelling
End With
DoCmd.SetWarnings True
End Sub
 

epiek

Registered User.
Local time
Today, 19:15
Joined
Jul 25, 2011
Messages
35
I tried to apply the coding but no joy. (It is way too complicated for me to apply in VBA). Is there no simpler method?
 

Users who are viewing this thread

Top Bottom