The title pretty much explains question. I want to sen alt+space+n combination via Senkeys.send
method, how this could be done? So far I've tried SendKeys.Send("% N");
but it's not working.
Sendkeys.send send alt+space+n combination
1.9k Views Asked by user2412672 At
2
There are 2 best solutions below
3

The string you're using should work. Perhaps the default journaling hook doesn't work with the application you're trying to minimize. You could try using the alternate method using app.config and SendInput (see here).
A better way to solve the problem would be to obtain a handle to the focused window using GetActiveWindow, then call ShowWindowAsync and pass in a ShowWindowCommand value of 2.
Spacebar isn't a traditional modifier key, so I believe you will need to send the keyUp and keyDown events seperately.
I'm not completely familiar with C# sendkeys, since I use the AutoIt library for this kind of thing, with AutoIt the commands would be something like:
Hopefully someone else can tell how to send keyUp and keyDown events using SendKeys, otherwise you can learn how to integrate AutoIt into C# using the answer to this question: link.