force keyboard (ALT) shortcuts in VBA Code?
Thanks,
I'll play with it a bit. I don't understand the last thing you said, but
I'll look into it.
Steve
"Jim Cone" wrote in message
...
Steve,
If you want to paste then these work...
Application.SendKeys ("%(e)p~") ' I added the enter key
Application.SendKeys ("^(v)") ' or
Application.SendKeys ("^v") ' without the ()
Remember to do this from the spreadsheet, not from the VBE.
Also, note that there are two versions of SendKeys...
omit "Application" to send to the active window.
use "Application" to send to the application.
Experiment a little.
I still recommend Application.Run("Name of Sub")
Regards,
Jim Cone
San Francisco, CA
|