C
C. Sharp
Is there a new way in Access 2007 that will allow my data entry personnel to
keep hitting the tab key from one page to subsequent pages? Right now I have
an Event Procudure set "On Enter" as below. But I have found that by adding
this code my datasheet view of the same form will allow part of the form to
appear and not go away. Please tell me there is some new function that
allows tabbing to the next page and not the next record??? Thanks in advance.
Private Sub Page_1_Enter()
Me.Total_Nbr_Anticipated.SetFocus
End Sub
Private Sub Page_2_Enter()
Me.Air_Arrival_Date.SetFocus
End Sub
Private Sub Page_3_Enter()
Me.Need_Room_.SetFocus
End Sub
Private Sub Page_4_Enter()
Me.Event_Func01.SetFocus
End Sub
keep hitting the tab key from one page to subsequent pages? Right now I have
an Event Procudure set "On Enter" as below. But I have found that by adding
this code my datasheet view of the same form will allow part of the form to
appear and not go away. Please tell me there is some new function that
allows tabbing to the next page and not the next record??? Thanks in advance.
Private Sub Page_1_Enter()
Me.Total_Nbr_Anticipated.SetFocus
End Sub
Private Sub Page_2_Enter()
Me.Air_Arrival_Date.SetFocus
End Sub
Private Sub Page_3_Enter()
Me.Need_Room_.SetFocus
End Sub
Private Sub Page_4_Enter()
Me.Event_Func01.SetFocus
End Sub