Hi Chris
you can definitely do add keyboard shortcut to Custom button in ISV.Config
There is a AccessKey attribute to Button
Which Specifies a single character that works as a keyboard shortcut for accessing the button. When this is specified, ALT+<key> can be used to access this button.
http://msdn.microsoft.com/en-us/library/cc150891.aspx
Or else you can do by javascript use attachEvent in the form onload and attach the keypress event to the DOM body. Then detect the key combination you want and then call the same code you have in the ISV.config button or locate the button in the
DOM using getElementById and then triggering the onclick event.
hth
dkay
if the response answered your question, please take a minute and mark the response as an answer.