Events fired when saving record from using form wizard

S

Soddy

Say, I'm trying to figure out what events are 'fired' when I save a record I
entered on a form I created using the form wizard (using the navigation
buttons). I am wanting the cursor to go to the beginning of this input form
(for entering the next record) after I click the '>' on the navigation
buttons, but the cursor stays on the last field...

Thanks in advance for any help...!
 
A

Allen Browne

The BeforeUpdate event if the form fires when you save the record. (Note
that the form's BeforeUpdate is different from the BeforeUpdate even of the
control.)

The form's Current event fires when you move record, even if there is
nothing that needs to be saved.
 
Top