Hi,
My combo is a FindAsYouType combo and obviously its code overrides the tab index in the properties of the combo. Tab index is only 4, but the form always opens with this combo highlighted.
Is there any code to say, this field in this form is to be first?
Thanks, mare
P.S.: This is among others the code of the form:
My combo is a FindAsYouType combo and obviously its code overrides the tab index in the properties of the combo. Tab index is only 4, but the form always opens with this combo highlighted.
Is there any code to say, this field in this form is to be first?
Thanks, mare
P.S.: This is among others the code of the form:
Code:
Public faytCombo As FindAsYouTypeCombo
Dim bWasNewRecord As Boolean 'and other Call lines for the Allen Browne's Audit Log
Private Sub Form_Open(Cancel As Integer)
DoCmd.GoToRecord , , acNewRec
Set faytCombo = New FindAsYouTypeCombo
Set faytCombo.FilterComboBox = Me.Employee_ID
faytCombo.FilterFieldName = "Employee_ID"
End Sub