Giving F10 a Job
-
Hi, I would like to assign F10 some code, but I notice that F10 activates the Main Menu. Is there a way to stop F10 from doing this? if(e.KeyValue == 121)//F10 { //Do something } Thanks, Ron
-
Hi, I would like to assign F10 some code, but I notice that F10 activates the Main Menu. Is there a way to stop F10 from doing this? if(e.KeyValue == 121)//F10 { //Do something } Thanks, Ron
It's generally bad practice to remap the standard function keys and shortcuts. This can end up confusing your users. Imagine if pressing F1 invoked copy instead, and Ctrl+C invoked help - people would soon complain.
Arthur Dent - "That would explain it. All my life I've had this strange feeling that there's something big and sinister going on in the world." Slartibartfast - "No. That's perfectly normal paranoia. Everybody in the universe gets that." Deja View - the feeling that you've seen this post before.
-
Hi, I would like to assign F10 some code, but I notice that F10 activates the Main Menu. Is there a way to stop F10 from doing this? if(e.KeyValue == 121)//F10 { //Do something } Thanks, Ron
-
Thanks Sameer! Ron