I've seen a dozen or so different descriptions of how to do this, but I can't get the syntax right. I have a main form called "Master Lists". It has a navigation subform called "NavigationSubform". One of the navigation tabs opens a form called "Contract List".
I'm trying to use DoCmd.BrowseTo to open the Contract List on the subform.
My code is as follows:
DoCmd.BrowseTo acBrowseToForm, "[Contract List]", "[Master Lists].NavigationSubform"
But I get the error "The macro action BrowseTo requires a valid Path argument. A valid Path argument is of the form: MainForm1.Subform1>Form1.Subform1"
I've got the correct main form and subform, and the Contract List doesn't have any additional subforms, so I think I don't need the part after the ">". (Right?) Anyone have any ideas?
Thanks!