472,110 Members | 2,211 Online
Bytes | Software Development & Data Engineering Community
Post +

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,110 software developers and data experts.

How to create a custom shortcut menu command

3 2Bits
Dear friends,
I am using MS Access 2022 (office 365), I am having trouble with creating shortcut menu command for report. I tried to follow the same thing posted by Beacon (How to create a custom shortcut menu command that identifies the calling form/report?), I used MS Office 16.0 object library as reference. The code causes no error, but when on use right mouse click on the form/report that call the sub creating the custom short cut menu, it shows only the standard shortcut menu of ms access. The code posed as said above is here below. Please help to advise.
Expand|Select|Wrap|Line Numbers
  1. Sub CreateReportShortcutMenu()
  2.  
  3.     Dim cmbReportShortcutMenu As Office.CommandBar
  4.     Dim cmbControl As Office.CommandBarControl
  5.  
  6.     'On Error Resume Next
  7.  
  8.     'Delete the command bar if it already exists
  9.     DeleteContextMenu
  10.  
  11.     ' Create the shortcut menu.
  12.     Set cmbReportShortcutMenu = CommandBars.Add("ReportShortcutMenu", msoBarPopup)
  13.  
  14.     With cmbReportShortcutMenu
  15.  
  16.         ' Add the Print command.
  17.         Set cmbControl = .Controls.Add(msoControlButton, 2521)
  18.         ' Change the caption displayed for the control.
  19.         cmbControl.Caption = "Quick Print"
  20.  
  21.         ' Add the One Page command.
  22.         Set cmbControl = .Controls.Add(msoControlButton, 5)
  23.  
  24.         ' Add the Two Pages command.
  25.         Set cmbControl = .Controls.Add(msoControlButton, 639)
  26.  
  27.         ' Add the Print command.
  28.         Set cmbControl = .Controls.Add(msoControlButton, 15948)
  29.         ' Change the caption displayed for the control.
  30.         cmbControl.Caption = "Select Pages"
  31.  
  32.         ' Add the Page Setup... command.
  33.         Set cmbControl = .Controls.Add(msoControlButton, 247)
  34.         ' Change the caption displayed for the control.
  35.         cmbControl.Caption = "Page Setup"
  36.  
  37.         ' Add the Mail Recipient (as Attachment)... command.
  38.         Set cmbControl = .Controls.Add(msoControlButton, 2188)
  39.         ' Start a new group.
  40.         cmbControl.BeginGroup = True
  41.         ' Change the caption displayed for the control.
  42.         cmbControl.Caption = "Email Report as an Attachment"
  43.  
  44.         ' Add the PDF or XPS command.
  45.         Set cmbControl = .Controls.Add(msoControlButton, 12499)
  46.         ' Change the caption displayed for the control.
  47.         cmbControl.Caption = "Save as PDF/XPS"
  48.  
  49.         ' Add the Close command.
  50.         Set cmbControl = .Controls.Add(msoControlButton, 923)
  51.         ' Start a new group.
  52.         cmbControl.BeginGroup = True
  53.         ' Change the caption displayed for the control.
  54.         cmbControl.Caption = "Close Report"
  55.  
  56.         '*******************************************************
  57.         '* If I was going to use a custom sub/function,
  58.         '* this an example of how I would at least start it
  59.         '*******************************************************
  60.  
  61.         ' Add a blank command
  62.         Set cmbControl = .Controls.Add(msoControlButton, 1)
  63.         cmbControl.Caption = "Email As PDF"
  64.         cmbControl.OnAction = "=MySubFunction()"
  65.  
  66.     End With
  67.  
  68.     Set cmbControl = Nothing
  69.     Set cmbReportShortcutMenu = Nothing
  70.  
  71. End Sub
  72.  
  73. Sub DeleteContextMenu()
  74.  
  75.     On Error Resume Next
  76.     CommandBars("ReportShortcutMenu").Delete
  77.  
  78. End Sub
2 Weeks Ago #1
7 7642
NeoPa
32,497 Expert Mod 16PB
I won't delete this straight off, in case the reason it's been done so poorly is because of language issues.

However, This is not a valid question. It's a request for someone to do your work for you. You show no signs even of having started to look at what might be going wrong, or even if the code is supposed to do what you want. There is also no clear explanation of exactly what that is. You have code; you have a requirement; clearly these don't match but nor is either explained. What's your requirement? What does the code do that doesn't match that?
2 Weeks Ago #2
bounthong
3 2Bits
Hi NeoPa,

It is correct that my English is poor, anyway I will try to be more precise and compact this time.

1. Requirement: I want to have Custom Shortcut Menu for my report.
2. Current situation: I have used the code shown below here in this post (initially posted by Beacon, shown also in my initial post). I have tried by calling this CreateReportShortcutMenu (shown below) from by my report, but it does not work. Right mouse click on my report in report preview mode or report view mode, only standard shortcut menu of msaccess appears.

I need help for making the custom shortcut menu worked/appeared.

Hope my English is understandable this time.

Here is the code I use:
Expand|Select|Wrap|Line Numbers
  1. Sub CreateReportShortcutMenu()
  2.  
  3.     Dim cmbReportShortcutMenu As Office.CommandBar
  4.     Dim cmbControl As Office.CommandBarControl
  5.  
  6.     'On Error Resume Next
  7.  
  8.     'Delete the command bar if it already exists
  9.     DeleteContextMenu
  10.  
  11.     ' Create the shortcut menu.
  12.     Set cmbReportShortcutMenu = CommandBars.Add("ReportShortcutMenu", msoBarPopup)
  13.  
  14.     With cmbReportShortcutMenu
  15.  
  16.         ' Add the Print command.
  17.         Set cmbControl = .Controls.Add(msoControlButton, 2521)
  18.         ' Change the caption displayed for the control.
  19.         cmbControl.Caption = "Quick Print"
  20.  
  21.         ' Add the One Page command.
  22.         Set cmbControl = .Controls.Add(msoControlButton, 5)
  23.  
  24.         ' Add the Two Pages command.
  25.         Set cmbControl = .Controls.Add(msoControlButton, 639)
  26.  
  27.         ' Add the Print command.
  28.         Set cmbControl = .Controls.Add(msoControlButton, 15948)
  29.         ' Change the caption displayed for the control.
  30.         cmbControl.Caption = "Select Pages"
  31.  
  32.         ' Add the Page Setup... command.
  33.         Set cmbControl = .Controls.Add(msoControlButton, 247)
  34.         ' Change the caption displayed for the control.
  35.         cmbControl.Caption = "Page Setup"
  36.  
  37.         ' Add the Mail Recipient (as Attachment)... command.
  38.         Set cmbControl = .Controls.Add(msoControlButton, 2188)
  39.         ' Start a new group.
  40.         cmbControl.BeginGroup = True
  41.         ' Change the caption displayed for the control.
  42.         cmbControl.Caption = "Email Report as an Attachment"
  43.  
  44.         ' Add the PDF or XPS command.
  45.         Set cmbControl = .Controls.Add(msoControlButton, 12499)
  46.         ' Change the caption displayed for the control.
  47.         cmbControl.Caption = "Save as PDF/XPS"
  48.  
  49.         ' Add the Close command.
  50.         Set cmbControl = .Controls.Add(msoControlButton, 923)
  51.         ' Start a new group.
  52.         cmbControl.BeginGroup = True
  53.         ' Change the caption displayed for the control.
  54.         cmbControl.Caption = "Close Report"
  55.  
  56.         '*******************************************************
  57.         '* If I was going to use a custom sub/function,
  58.         '* this an example of how I would at least start it
  59.         '*******************************************************
  60.  
  61.         ' Add a blank command
  62.         Set cmbControl = .Controls.Add(msoControlButton, 1)
  63.         cmbControl.Caption = "Email As PDF"
  64.         cmbControl.OnAction = "=MySubFunction()"
  65.  
  66.     End With
  67.  
  68.     Set cmbControl = Nothing
  69.     Set cmbReportShortcutMenu = Nothing
  70.  
  71. End Sub
  72.  
  73. Sub DeleteContextMenu()
  74.  
  75.     On Error Resume Next
  76.     CommandBars("ReportShortcutMenu").Delete
  77.  
  78. End Sub
2 Weeks Ago #3
MikeTheBike
639 Expert 512MB
Hi All

I have never used 365 so this may be irrelevant, but I suspect not.

Have you set the Shortcut Menu Bar property for the Form or Control in the properties Other Tab.

The code creating the shortcuts will need running ij the session before they appear inthe list for selection.

HTH

MTB
2 Weeks Ago #4
NeoPa
32,497 Expert Mod 16PB
Hi bounthong.

That is somewhat better. Clearly there is little understanding of what the code does so that would be harder to explain.

By the way - if you have a link to the original thread that MTB was involved in you may post it in here so others may view it in case that can help. While hijacks are not allowed, links to other threads certainly are.

@MTB.

Not sure I understand you correctly. Are you saying the code must be run before the db designer can design it into their Report object? That seems awkward at best.
1 Week Ago #5
bounthong
3 2Bits
Hi NeoPa,

I have tried different ways, including calling the sub that creating short cut menu in form_load event. As said, there was no error message from the system, it looks like everything is correct. But when the the form is open, right mouse click shows pop-up with standard short cut menu of ms access but not the expected one that should have been created by the sub mentioned.

Anyway, I have resolved my problem already with another method. I disabled all menus and short cut menu, and created custom ribbons for my purpose instead.

Thanks.
1 Week Ago #6
MikeTheBike
639 Expert 512MB
Hi NeoPa

Yes, in my experience since the days of office 97 to before ribbons were forced on us in 2007, Toolbars created in code don't seem to exist until the code creating them has run, which makes sense. Although toolbars so created will now appear on an Addin tab. I now define my own ribbons not toolbars, but the short cut menus still work as the y did pre-ribbons. It is inconvenient having to run the creating code before they appear in the design drop list, but if you know the designated name/title of the shortcut to be created you can type it in (I believe!).

MTB
1 Week Ago #7
NeoPa
32,497 Expert Mod 16PB
Hi Mike.

I'm afraid I still take advantage of the old CommandBars and CommandBarButtons which, as you say, still work and can be found within the AddIn Toolbar^H^H^H^H^H^H^HRibbon.
1 Week Ago #8

Post your reply

Sign in to post your reply or Sign up for a free account.

Similar topics

10 posts views Thread by Lex | last post: by
3 posts views Thread by Terry Bell | last post: by

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.