G
Guest
I am using a main form in single view to enter data to a table.
On the main form I have a subform that is a continuous form to show that
data. Both main and subforms have the same RecordSource.
On the main form, After Update event is:
Private Sub Form_AfterUpdate()
Me.Subform.Requery
End Sub
in order to update the subform to show the user what has been entered.
What I want is for the subform to move to the record that was last entered
on the mainform (without the cursor actually staying in the subform) after
the subform has been updated. I'm trying to keep the user from having to
scroll down inside the subform the check on what's been entered. My VB is
quite rusty so sample/generic code would be quite helpful.
Thanks,
Benny
On the main form I have a subform that is a continuous form to show that
data. Both main and subforms have the same RecordSource.
On the main form, After Update event is:
Private Sub Form_AfterUpdate()
Me.Subform.Requery
End Sub
in order to update the subform to show the user what has been entered.
What I want is for the subform to move to the record that was last entered
on the mainform (without the cursor actually staying in the subform) after
the subform has been updated. I'm trying to keep the user from having to
scroll down inside the subform the check on what's been entered. My VB is
quite rusty so sample/generic code would be quite helpful.
Thanks,
Benny