carlchapman
Registered User.
- Local time
- Today, 22:56
- Joined
- Jul 25, 2006
- Messages
- 29
Private Sub chsNotes_AfterUpdate()
If Len(Me!chsNotes & "") > 0 Then
DoCmd.RunCommand acCmdSpelling
Else
Exit Sub
End If
End Sub
The Latter runs a spell check on a field. I noticed however that it also causes the record to be saved after clicking ignore or change.
Is their a possibility to disable the acSave (what ever command it be) so on my form with subforms, it doesnt prompt me for "related field required" after each spell check. ?
If Len(Me!chsNotes & "") > 0 Then
DoCmd.RunCommand acCmdSpelling
Else
Exit Sub
End If
End Sub
The Latter runs a spell check on a field. I noticed however that it also causes the record to be saved after clicking ignore or change.
Is their a possibility to disable the acSave (what ever command it be) so on my form with subforms, it doesnt prompt me for "related field required" after each spell check. ?