My question is how to send shortcut from c++ to another application. Let's say for example that the notepad is open, and I want send to them shortcut like CTRL+P, or more complexive shortcut like CTRL+SHIFT+HOME, or ALT+F4, I find many good tutorials that explained how to send one key like 'A' or 'ALT', but I did not find how to send it together.
|
feedback
|
|
You can use
| |||
|
feedback
|
|
You can send a number of WM_KEYDOWNs followed by a number of WM_KEYUPs so you could try sending DOWN ctrl, shift, home, UP home, shift, ctrl - that should do the trick. | |||
|
feedback
|
|
This kind of "key combinations" is usually called Keyborad Accelerators in Microsoft Windows. The MSDN intro page | |||
|
feedback
|
ALT-F4"shortcut" ? Or do you want to send them aWM_CLOSEmessage? – MSalters Aug 16 '10 at 11:53