When I open a bound form like this:
DoCmd.OpenForm "frmNotes", , , , acFormAdd
and the user runs the Spell Checker on a field in the form, the Spell
Checker automatically cycles the form to the next record when it has
finished checking the current field. This results in the record being saved
prematurely and the form displaying that next record (which is the first
record in the form's RecordSource) .
Short of unbinding the form, is there any way to prevent this behavior?
Thanks in advance.
Tom van Stiphout - 29 Jan 2006 18:24 GMT
Have you tried setting the form's Cycle property to CurrentRecord?
-Tom.
>When I open a bound form like this:
>
[quoted text clipped - 9 lines]
>
>Thanks in advance.