I would like to have my help file in my Excel program.
IN
Private Sub Workbook_Open()
I have
Application.OnKey "{F1}", "Help"
This works when I am on an Excel worksheet, but my application is based on a full-screen main user format that displays modelessly.
When the user form is visible, it somehow locks the F1 key, and the macro does not start.
I thought that weak forms did not block code execution.
Any clues how can I do this?
source share