Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
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. |
#2
![]() |
|||
|
|||
![]()
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 "Murtaza" <NoEmail@NoEmail skrev i melding ... 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. |
#3
![]() |
|||
|
|||
![]()
In what type Module do these 3 procedures go?
"Harald Staff" wrote in message ... 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 "Murtaza" <NoEmail@NoEmail skrev i melding ... 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. |
#4
![]() |
|||
|
|||
![]()
I'd put them in a General module.
Another way to stop the F1 key (without any notice to the user at all): Sub DisableHelp2() Application.OnKey "{F1}", "" End Sub Jim May wrote: In what type Module do these 3 procedures go? "Harald Staff" wrote in message ... 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 "Murtaza" <NoEmail@NoEmail skrev i melding ... 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. -- Dave Peterson |
#5
![]() |
|||
|
|||
![]()
Yeah,
I had it there expecting it to run without "running-it" Added DisableHelp() to Workbook.Open; Everything is now ROSEY, tks, Jim "Dave Peterson" wrote in message ... I'd put them in a General module. Another way to stop the F1 key (without any notice to the user at all): Sub DisableHelp2() Application.OnKey "{F1}", "" End Sub Jim May wrote: In what type Module do these 3 procedures go? "Harald Staff" wrote in message ... 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 "Murtaza" <NoEmail@NoEmail skrev i melding ... 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. -- Dave Peterson |
#6
![]() |
|||
|
|||
![]()
Code doesn't work if we press "F1" after pressing "F2".
"Jim May" wrote in message news:6T1ge.2865$It1.357@lakeread02... Yeah, I had it there expecting it to run without "running-it" Added DisableHelp() to Workbook.Open; Everything is now ROSEY, tks, Jim "Dave Peterson" wrote in message ... I'd put them in a General module. Another way to stop the F1 key (without any notice to the user at all): Sub DisableHelp2() Application.OnKey "{F1}", "" End Sub Jim May wrote: In what type Module do these 3 procedures go? "Harald Staff" wrote in message ... 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 "Murtaza" <NoEmail@NoEmail skrev i melding ... 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. -- Dave Peterson |
#7
![]() |
|||
|
|||
![]()
If you're in the middle of editing a cell, then macros (well, any meaningful
macros) don't execute. I don't think you can stop this behavior--(Break the F1 key on your keyboard may work for you, though <vbg.) Murtaza wrote: Code doesn't work if we press "F1" after pressing "F2". "Jim May" wrote in message news:6T1ge.2865$It1.357@lakeread02... Yeah, I had it there expecting it to run without "running-it" Added DisableHelp() to Workbook.Open; Everything is now ROSEY, tks, Jim "Dave Peterson" wrote in message ... I'd put them in a General module. Another way to stop the F1 key (without any notice to the user at all): Sub DisableHelp2() Application.OnKey "{F1}", "" End Sub Jim May wrote: In what type Module do these 3 procedures go? "Harald Staff" wrote in message ... 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 "Murtaza" <NoEmail@NoEmail skrev i melding ... 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. -- Dave Peterson -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel 2003 FAILS, but Excel 2000 SUCCEEDS ??? | Excel Discussion (Misc queries) | |||
Stop Excel Rounding Dates | Excel Discussion (Misc queries) | |||
Hints And Tips For New Posters In The Excel Newsgroups | Excel Worksheet Functions | |||
I get a program error when I download an excel template | Excel Discussion (Misc queries) | |||
how to automatically configure excel data in all worksheets of a . | Excel Discussion (Misc queries) |