Hello,
I've created a Navigation Form with two tabs. It appears that Access renames all forms that are dropped in a tab as "NavigationSubform". I would like the Navigation Form to Open on a tab where "frmVariants" was dropped, when a textbox located on frmRuns is clicked. frmRuns is not a subform of a Navigation Form. Also, I would like to filter frmVariants based on a selected record from frmRuns.
Here is what I've tried:
I get an error message: invalid path that requires MainForm.subform>Form1.subform1 and I’m not sure what this means since I only have one level of subforms. Thanks
I've created a Navigation Form with two tabs. It appears that Access renames all forms that are dropped in a tab as "NavigationSubform". I would like the Navigation Form to Open on a tab where "frmVariants" was dropped, when a textbox located on frmRuns is clicked. frmRuns is not a subform of a Navigation Form. Also, I would like to filter frmVariants based on a selected record from frmRuns.
Here is what I've tried:
Code:
DoCmd.BrowseTo acBrowseToForm, "frmVariants", "Navigation Form.NavigationSubform", , , acFormEdit
Forms!frmVariants!txtCurrentRun = Forms!frmRuns!Run_Name
I get an error message: invalid path that requires MainForm.subform>Form1.subform1 and I’m not sure what this means since I only have one level of subforms. Thanks