M
Murtaza
I want Excel to not show the Help on F1 press, as I dont need Help that
often. But also I dont want to remove the Help support at all.
often. But also I dont want to remove the Help support at all.
Harald Staff said:Hi
A small macro can fix that:
Sub DisableHelp()
Application.OnKey "{F1}", ThisWorkbook.Name & "!Dummy"
End Sub
Sub EnableHelp()
Application.OnKey "{F1}"
End Sub
Sub Dummy()
MsgBox "You are paid to know this stuff", vbInformation
End Sub
Help menu will work as always.
HTH. best wishes Harald
Jim May said:Yeah,
I had it there expecting it to run without "running-it"
Added DisableHelp() to Workbook.Open;
Everything is now ROSEY, tks,
Jim
Code doesn't work if we press "F1" after pressing "F2".