Results 1 to 5 of 5
  1. #1
    JrMontgom is offline Competent Performer
    Windows Vista Access 2010 32bit
    Join Date
    Sep 2012
    Location
    Vero Beach, FL USA
    Posts
    124

    MS Access 2010 New NavigatorControl

    I have a form frmMainMenu with a horizontal navigatorcontrol and a vertical navigatorcontrol. The horizontal control is called NCMain. I want to be able to use the SelectTab property on NcMain to get the name of the form called up by the vsrious Navigator buttons on the NCMain without having to put code on each navigatorbutton. Is that possible? Most of the help is minimal for the navigator control. Nut one book says there is a control called NavigatorControl containing various navigator buttons and there is a subform which is called MainSubformControl. Any help poiting me in the right direction would help.

  2. #2
    JrMontgom is offline Competent Performer
    Windows Vista Access 2010 32bit
    Join Date
    Sep 2012
    Location
    Vero Beach, FL USA
    Posts
    124
    I hate to be a whiner but I really would like some help on this problem regarding how to call a process whenever a Navigationbutton is clicked in a NavigatioControl. The Help info in MS Access 2010 is very slim to nonexistant on this subject.

  3. #3
    ItsMe's Avatar
    ItsMe is offline Sometimes Helpful
    Windows 7 64bit Access 2010 32bit
    Join Date
    Aug 2013
    Posts
    7,862
    Quote Originally Posted by JrMontgom View Post
    ...Is that possible?...
    Probably not. There are limited options within the properties of Buttons within the Navigation Control. I would familiarize yourself with these properties to answer your own question.

    As for why you are not getting responses is, there are not many members here with experience in Navigation Controls. I am one of those that does not have experience, other than fumbling around with them at the time they were first introduced.

    I can do searches on the web for VBA examples if you wish.

  4. #4
    JrMontgom is offline Competent Performer
    Windows Vista Access 2010 32bit
    Join Date
    Sep 2012
    Location
    Vero Beach, FL USA
    Posts
    124
    Thanks for the reply. I really like the navigation control just wish they had better Help info. I have tried Google but I don't get much better response, I guess I'll do more experimenting with the NC. Thanks

  5. #5
    ItsMe's Avatar
    ItsMe is offline Sometimes Helpful
    Windows 7 64bit Access 2010 32bit
    Join Date
    Aug 2013
    Posts
    7,862
    Here are some ideas to consider as you research the subject...

    Rename the form, subforms, NavControl, Nav Buttons in a way to help you understand what each object is.

    Get familiar with each control's properties and their limitations (Buttons, Tabs, Etc.)

    Expect limitations when using VBA. Here is syntax to set value of an unbound textbox within Nav Control
    Code:
    Forms!frmNavForm1.NavigationSubform.Form.txtSample.Value = 12
    However this will not work.
    Code:
    Forms!frmNavForm1.NavigationSubform.Form.txtSample.SetFocus
    My experience is that Navigation Controls do not like VBA and prefer Macros.
    You can use VBA to get stuff done and set properties
    Docmd.BrowseTo
    ObjectName:
    PathToSubformControl:
    WhereCondition:

    It may be better to create Macros. The Nav Control's limitations seem to be on par with limitations of Macros
    https://www.youtube.com/watch?v=A0HowZInuaI

Please reply to this thread with any new information or opinions.

Similar Threads

  1. Replies: 5
    Last Post: 01-07-2016, 12:49 PM
  2. Replies: 6
    Last Post: 07-07-2014, 09:13 AM
  3. Replies: 1
    Last Post: 06-29-2013, 01:49 AM
  4. Replies: 9
    Last Post: 05-07-2013, 08:37 PM
  5. Replies: 0
    Last Post: 07-31-2012, 12:25 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums