Hello, I am trying to use your examples with a navigation form. It creates it, and I assume that the tab control is NavigationContr ol0, but Access 2010 says that it doesn't accept the method.
Could you give me some assistance? I simply need to open a certain tab of the navigation form through VBA.
Thank you.
Found SOLUTION:
Could you give me some assistance? I simply need to open a certain tab of the navigation form through VBA.
Thank you.
Found SOLUTION:
Code:
Private Sub Command15_Click() DoCmd.BrowseTo ObjectType:=acBrowseToForm, _ ObjectName:="34", _ PathToSubformControl:="NavigationForm.NavigationSubform", _ WhereCondition:="", _ Page:="", _ DataMode:=acFormEdit End Sub
Comment