"NickG1" wrote in message
> What event would describe moving from one record to another in a form?
>
> I've incorporated a tab control into my form and I'd like to deisgn it so
> that when a user is on any tab other than the 1st one, if the user moves
> to
> another record (e.g., using the record selctor), then I'd like the form to
> default to the 1st tab.
>
> I figure I can move the to the 1st tab if I can desctibe the move to a
> different record and at then set the focus to a control on the 1st
> tab,.......right?
>
> Thanks in advance.
The Current event fires when the form moves to a new record. You can change
to the first tab page by setting the focus to a control on it, as you say,
or by setting the value of the tab control itself to 0; e.g.,
Private Sub Form_Current()
Me.tabMyTab = 0
End Sub
>> Stay informed about: Change of Record