Link to home
Start Free TrialLog in
Avatar of donhannam
donhannamFlag for New Zealand

asked on

Access 2007 - using shortcut / right click command bars

I have used shortcut menus fine in access 2003 where it allows you to set these up manually. From looking through the posts it looks like you can add these in code and looks like you only need to run code once to set up.

However I can't find the right code to set up - looks like it relates to CommandBars.Add and then adding controls to this but I cannot get right code without an error.

Does anyone have the code to set up a shortcut menu which I can then select in the shortcut menu bar Property on a control on a form.

I would like to set up a shortcut with say 3 items to select - Ideally I would like one of these to run a function.
Avatar of MrXmas
MrXmas
Flag of United States of America image

donhannam,

Here's some code that I've been using.  

My toolbar is called "Novitas Tools"  (it's the name of a large application I wrote).  The code first removes the toolbar if it's there, then adds the buttons one by one.  Change the lines NewBtn.OnAction =  to reference your subroutine name.

Hope this is what you were looking for.

--Jim Christmas
Sub NovitasToolbar()
 
Dim ctlPop As CommandBarPopup
Dim ctl As CommandBarControl
Dim NewBtn As CommandBarButton
Dim strPlatform As String
 
    On Error GoTo Exit_Toolbars
 
    'Remove Existing
 
    For Each ctl In Application.CommandBars("Menu Bar").Controls
        If ctl.Caption = "Novitas Tools" Then ctl.Delete
    Next ctl
 
    Set ctlPop = Application.CommandBars("Menu Bar").Controls.Add(msoControlPopup, , , , True)
    ctlPop.Caption = "Novitas Tools"
        
    Set NewBtn = ctlPop.Controls.Add(msoControlButton)
    NewBtn.Caption = "Lookup a Novitas &User"
    NewBtn.OnAction = "LaunchWhoIs"
    NewBtn.FaceId = 362
    
    Set NewBtn = ctlPop.Controls.Add(msoControlButton)
    NewBtn.Caption = "&Calculator"
    NewBtn.OnAction = "LaunchCalc"
    NewBtn.FaceId = 283
    
    Set NewBtn = ctlPop.Controls.Add(msoControlButton)
    NewBtn.Caption = "Calen&dar"
    NewBtn.OnAction = "LaunchCalendar"
    NewBtn.FaceId = 1106
    
    Set NewBtn = ctlPop.Controls.Add(msoControlButton)
    NewBtn.Caption = "Send &eMail"
    NewBtn.OnAction = "LaunchContextEMail"
    NewBtn.FaceId = 262
    
    If GetLoginID = "JCHRIS1" Then
        Set NewBtn = ctlPop.Controls.Add(msoControlButton)
        NewBtn.Caption = "&Administration Console"
        NewBtn.OnAction = "LaunchAdmin"
        NewBtn.FaceId = 2144
    End If
    
    Exit Sub
Exit_Toolbars:
    If Err Then Err.Clear
    
End Sub

Open in new window

Avatar of donhannam

ASKER

Jim,

Tried this - ran without errors but cannot get to work as a shortcut menu.

By playing around a bit managed to get to display on shortcut menu bar list dropdown but when right clicked there was nothing in the list.

Is this for shortcuts or is it for toolbars or menu bars?.

Appreciate any help

Thanks

Don.
ASKER CERTIFIED SOLUTION
Avatar of MrXmas
MrXmas
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Not what I was looking for but have used part of code for other uses.