key assignments

  • Thread starter Thread starter Gary Keramidas
  • Start date Start date
G

Gary Keramidas

is there a way to assign copy and paste to a function key or some other key
combination?

i tired this and it didn't work, it still bring up the help pane.

Application.OnKey "^{F1}", "^{C}"
 
The second argument in Application.OnKey is the name of the macro you
want to run when the user presses the key in the first argument...

It doesn't allow you directly map one key onto another.
 
Is there a method in VBA that allows each macro to be scanned to determine if
it has an OnKey assignment?
 
i know that. i had a type. i don't want to use control f1, i just want to use f1

Application.OnKey "{F1}", "^{C}"
 
thanks, wasn't sure about that.

--


Gary


JE McGimpsey said:
The second argument in Application.OnKey is the name of the macro you
want to run when the user presses the key in the first argument...

It doesn't allow you directly map one key onto another.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top