Move to Tab in the V2007-V2010 Navigation Control

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • RagonichaFulva
    New Member
    • Oct 2012
    • 2

    #1

    Move to Tab in the V2007-V2010 Navigation Control

    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:

    Code:
    Private Sub Command15_Click()
    DoCmd.BrowseTo ObjectType:=acBrowseToForm, _
    ObjectName:="34", _
    PathToSubformControl:="NavigationForm.NavigationSubform", _
    WhereCondition:="", _
    Page:="", _
    DataMode:=acFormEdit
    End Sub
    Last edited by Meetee; Oct 23 '12, 11:02 AM. Reason: code tags <code/> added
  • zmbd
    Recognized Expert Moderator Expert
    • Mar 2012
    • 5501

    #2
    RagonichaFulva,
    I split your post from the Insight Article for a few reasons:
    (1) The navigation control, despite appering as a tab control really is not; therefor, the information contained within the article you posted to does not pertain.
    (2) From past experince, it appears that posts made to an insight article deal directly with the information contained therein.
    (3) Your Question DESERVES to have its own thread! The new Navigation Control introduced in the latest versions of MS Access are VERY poorly documented. Infact, I'm working thru just such issues myself. I like the concept behind the control; however, it presents alot if issues, thus questions, and MS didn't see fit to provide many answers.

    Comment

    • RagonichaFulva
      New Member
      • Oct 2012
      • 2

      #3
      Hello zmbd,

      Thanks for your efforts. I thought it was a special tab control form.

      I hope my comment helps someone, and thanks to your actions it will surely be more probable to be of use to someone.

      Comment

      Working...