Link to home
Start Free TrialLog in
Avatar of Fi69
Fi69

asked on

custom UI Editor > Misleading help message

Hi experts

I have a custom ribbon tab on the ribbon with a range of buttons, created via the custom UI Editor for Microsoft Office.  My users believe they can press the F1 key for direct help with the button because by default it says (a) the name of the template and (b) Press F1 for more help (see attached image).

Is there anyway to get rid of that misleading message??????
Misleading-message.jpg
ASKER CERTIFIED SOLUTION
Avatar of GunterAv
GunterAv
Flag of Germany 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
Avatar of Martin Liss
Private Sub Workbook_Open()
    Application.OnKey "{F1}", "NoHelp"
End Sub

And in a regular module:

Sub NoHelp()
    MsgBox "Sorry but no help is available."
End Sub