Sorry, let's clarify:
name of the form: frmAddItems
I renamed the control as suggested: ctrAddItems (the control that contains the 6 tabs)
and the name of the subform is: tblX_Additems_subform (there is no '.Form')
I've tried this:
Code:
Private Sub Form_Load()
' Me.frmAddItems.ctrAddItems.SetFocus
DoCmd.GoToRecord acDataForm, Me.frmAddItems.ctrAddItems.tblX_AddItems_subform.Name, acNewRec
End Sub
And this:
Code:
Private Sub Form_Load()
Me.ctrAddItems.SetFocus
DoCmd.RunCommand acCmdRecordsGoToNew
End Sub
but to no avail.
I honestly tied to look for tutorials but it noes not deal with this issue.
C