Quote:
Originally Posted by scamp I am trying to find a way to "force" the ALT setting (numbers only) on the keyboard for my app via code.
Does anyone know if this is possible? If so, how do I do it?
Thanks!! |
I found this code last week, try it and let me know if it works for you. (the code is used to send a specific key to the application that has control):
SendKeys.Send (chr(&###)) where ### is the number that represents the key you want to send. The number for the ALT key is 262144.
Jim Dionne