Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2
Default how to turn off f1 help key in excel

Is there a way to turn off the F1 key (help menu/task "pain") in Excel?
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default how to turn off f1 help key in excel

Chip Pearson says that he actually "fixed" his keyboard by taking that key off.
Others say that they left the key, but removed the spring underneath.

But you could use a couple of macros (one to disable and one to enable):

Option Explicit
Sub disableF1()
Application.OnKey "{f1}", ""
End Sub

This would toggle it back to normal.

Sub enableF1()
Application.OnKey "{f1}"
End Sub

If you're new to macros, you may want to read David McRitchie's intro at:
http://www.mvps.org/dmcritchie/excel/getstarted.htm

ih1234 wrote:

Is there a way to turn off the F1 key (help menu/task "pain") in Excel?


--

Dave Peterson
  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 740
Default how to turn off f1 help key in excel

Hi Dave'

sorry to interrupt,
i do have same kind of matter,

While using excel, can i directly go to this forum by just hitting *F1* key ?
Is it possible by macro.. ?

regards,
driller

--
*****
birds of the same feather flock together..



"Dave Peterson" wrote:

Chip Pearson says that he actually "fixed" his keyboard by taking that key off.
Others say that they left the key, but removed the spring underneath.

But you could use a couple of macros (one to disable and one to enable):

Option Explicit
Sub disableF1()
Application.OnKey "{f1}", ""
End Sub

This would toggle it back to normal.

Sub enableF1()
Application.OnKey "{f1}"
End Sub

If you're new to macros, you may want to read David McRitchie's intro at:
http://www.mvps.org/dmcritchie/excel/getstarted.htm

ih1234 wrote:

Is there a way to turn off the F1 key (help menu/task "pain") in Excel?


--

Dave Peterson

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default how to turn off f1 help key in excel

You're using Microsoft's CDO web interface. Maybe you could assign F1 to follow
a hyperlink to that site.

Option Explicit
Sub Reassign()
Application.OnKey "{f1}", "'" & ThisWorkbook.Name & "'!NewsGroup"
End Sub
Sub newsgroup()
ActiveWorkbook.FollowHyperlink "http://www.microsoft.com"
End Sub

You'll have to use the address to that page, though.

=======
But if you can use something else besides the CDO interface, it makes life
easier (although not all companies will allow you to connect to newsgroups
directly).

Saved from a previous post:

If you have Outlook Express installed, try clicking on these links (or copy and
paste into MSIE).

news://msnews.microsoft.com/microsof...ic.excel.setup
news://msnews.microsoft.com/microsoft.public.excel.misc
news://msnews.microsoft.com/microsof...heet.functions
news://msnews.microsoft.com/microsof...excel.newusers
news://msnews.microsoft.com/microsof...el.programming

(and a few more for MSWord)
news://msnews.microsoft.com/microsof....docmanagement
news://msnews.microsoft.com/microsof...word.word97vba
news://msnews.microsoft.com/microsof....word.newusers
news://msnews.microsoft.com/microsof...ord.pagelayout
news://msnews.microsoft.com/microsof...ord.vba.addins
news://msnews.microsoft.com/microsof....vba.beginners
news://msnews.microsoft.com/microsof....customization
news://msnews.microsoft.com/microsof...rd.vba.general
news://msnews.microsoft.com/microsof....vba.userforms
news://msnews.microsoft.com/microsof....word6-7macros

(You can always connect to more later)

Here are some links that explain it better:

Chip Pearson has some notes written by Leonard Meads at:
http://www.cpearson.com/excel/DirectConnect.htm

David McRitchie's notes at:
http://www.mvps.org/dmcritchie/excel/xlnews.htm
http://www.mvps.org/dmcritchie/excel/oe6.htm
http://www.mvps.org/dmcritchie/excel/oe6nws01.htm

Tushar Mehta's notes at:
http://www.tushar-mehta.com/misc_tut...e_ng/index.htm

And if you're looking for old posts:

Or you can use google (maybe a few hours behind) to search for stuff you've
posted (and find the replies, too)

http://groups.google.com/advanced_group_search
http://groups.google.com/advanced_gr...Excel*&num=100

Ron de Bruin has an excel addin that you may like:
http://www.rondebruin.nl/Google.htm

driller wrote:

Hi Dave'

sorry to interrupt,
i do have same kind of matter,

While using excel, can i directly go to this forum by just hitting *F1* key ?
Is it possible by macro.. ?

regards,
driller

--
*****
birds of the same feather flock together..

"Dave Peterson" wrote:

Chip Pearson says that he actually "fixed" his keyboard by taking that key off.
Others say that they left the key, but removed the spring underneath.

But you could use a couple of macros (one to disable and one to enable):

Option Explicit
Sub disableF1()
Application.OnKey "{f1}", ""
End Sub

This would toggle it back to normal.

Sub enableF1()
Application.OnKey "{f1}"
End Sub

If you're new to macros, you may want to read David McRitchie's intro at:
http://www.mvps.org/dmcritchie/excel/getstarted.htm

ih1234 wrote:

Is there a way to turn off the F1 key (help menu/task "pain") in Excel?


--

Dave Peterson


--

Dave Peterson
  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2
Default how to turn off f1 help key in excel

Thanks Dave, the Macro worked perfect. Seems there would be something built
into Excel to allow this to be toggled (like in Word)... but that would be
too simple now wouldn't it?

"ih1234" wrote:

Is there a way to turn off the F1 key (help menu/task "pain") in Excel?

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How can I turn off Autorecovery in Excel 2003? Jamie Carper Excel Discussion (Misc queries) 2 August 1st 06 03:40 PM
turn on audio in excel Linda Excel Discussion (Misc queries) 1 March 20th 06 05:04 PM
How to turn off the F1 key in Excel 2002 widman Excel Discussion (Misc queries) 4 August 30th 05 01:29 AM
how do I turn off vsync in excel? Richard J Scott Excel Discussion (Misc queries) 1 June 13th 05 01:46 PM
how do i turn off formulas in excel vachss Excel Discussion (Misc queries) 4 April 5th 05 01:43 AM


All times are GMT +1. The time now is 09:33 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"