I have built a custom right click menu that works great. However some users of the DB do not intuitively understand the difference in the print icons. The first print icon opens the print dialog box, whereas the second print icon (with the green tick) does an immediate print (which can be a disaster in a 200 page report, if they just wanted to print the current page). I'd like to change the text next to the icons to something more meaningful to make the commands clearer for the user.
Is this possible using the code I have below or do I need a different approach?

Code:
' build new right click print menu
Dim NewRightClickPrintMenu As Object
On Error Resume Next
CommandBars("NewRightClickPrintMenu").Delete
Set NewRightClickPrintMenu = CommandBars.Add("MyRightClickPrintMenu", 5, False, True)
NewRightClickPrintMenu.Controls.Add 1, 247, , , True 'page setup"
NewRightClickPrintMenu.Controls.Add 1, 15948, , , True 'print dialogue
NewRightClickPrintMenu.Controls.Add 1, 109, , , True ' print preview
NewRightClickPrintMenu.Controls.Add 1, 2521, , , True 'quick print
NewRightClickPrintMenu.Controls.Add 1, 12499, , , True ' PDF
NewRightClickPrintMenu.Controls.Add 1, 923, , , True ' close
I have found this reference online, but it seems far more cumbersome.
https://docs.microsoft.com/en-us/off...trol-or-report