Navigating to a different tab in navigation subform

后端 未结 3 1572
轮回少年
轮回少年 2020-12-18 12:13

In an ms access 2010 database, I have a listbox whose afterupdate procedure needs (among other things) to navigate to a specific tab in a navigation subform. I can get it t

3条回答
  •  感情败类
    2020-12-18 12:48

    Access gave a relatively decent explanation of what the proper syntax of the path is.

    Path argument is of the form: MainForm1.Subform1>Form1.Subform1

    So your BrowseTo command should look like this:

    DoCmd.BrowseTo acBrowseToForm, "qryListCommunicationForms", "Main.NavigationSubform>FindClientsNavigation.NavigationSubform"

提交回复
热议问题