I'd like to have my own help file in my Excel program.
In the
Private Sub Workbook_Open()
I have
Application.OnKey "{F1}", "Help"
That works when I'm on the Excel sheet but my application is based on a fullscreen main userform which is displayed modeless.
When the userform is visible it blocks the F1 key somehow and the macro doesn't fire.
I thought that modeless forms didn't block code execution.
Any hints how can I make this work?