Page 2 of 2 FirstFirst 12
Results 16 to 19 of 19
  1. #16
    data808 is offline Noob
    Windows XP Access 2010 32bit
    Join Date
    Aug 2012
    Posts
    727
    Yeah everyone right now is pointing me in the direction of creating a custom ribbon. However when I ask about the right click in a custom ribbon if it will give that pesky customize quick access toolbar option, no one really knows or they said it will still give that option.

    Can anyone with a custom ribbon test this for me? I just want to know for sure before I commit to learning how to make a custom ribbon. Seems like a lot of work for nothing if it can't prevent the customize quick access toolbar option when you right click in the ribbon area.

  2. #17
    data808 is offline Noob
    Windows XP Access 2010 32bit
    Join Date
    Aug 2012
    Posts
    727
    How do you do that to restore the menus back with a password? That sounds like a great option however I don't even know where to begin to start making customized menus and ribbons. Do you have a link to an example of these things where I can just add it to my database and add and remove things to it?

  3. #18
    trevor40's Avatar
    trevor40 is offline Advanced db Manager
    Windows XP Access 2003
    Join Date
    Feb 2014
    Location
    Australia
    Posts
    402
    I have this for my Tab menu

    Private Sub main_menu_tab_Change() ' Or use the click event of an object on your form
    With Me(contabs)
    Select Case .Pages(.Value).Caption
    Case "S&ystem"
    If InputBox("Enter Password", "PW Check", vbOKCancel) = 1234 Then

    'your code goes here

    Else
    Screen.PreviousControl.SetFocus
    End If
    Case Else
    End Select
    End With
    End Sub
    ' PS the & symbol makes the next letter the shortcut key for changing to that page if the tab control has the focus

    It's very basic, you have to adapt it to your situation I only use Access 2003 at the moment, perhaps somebody else with experience in ribbon control using vba can help

  4. #19
    amrut is offline Expert
    Windows 7 64bit Access 2010 32bit
    Join Date
    Jun 2012
    Location
    Dubai
    Posts
    614
    This is a very good resource for learning access ribbon http://www.accessribbon.de/en/.
    See the attached example.NoRibbon.accdb

Page 2 of 2 FirstFirst 12
Please reply to this thread with any new information or opinions.

Similar Threads

  1. Mouse Over/Hover Over
    By nndatabase in forum Forms
    Replies: 3
    Last Post: 06-07-2013, 04:45 PM
  2. Mouse pointer (=
    By denggoy in forum Access
    Replies: 3
    Last Post: 11-15-2011, 05:30 PM
  3. Replies: 0
    Last Post: 09-27-2011, 04:27 AM
  4. Replies: 1
    Last Post: 06-02-2009, 04:44 PM
  5. Mouse click to open form
    By darryl.charles in forum Programming
    Replies: 0
    Last Post: 09-05-2008, 10:33 AM

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