Pixel-Ink
Member
- Joined
- Jun 12, 2023
- Messages
- 13
- Programming Experience
- 5-10
I have looked at MS's list of available send keys on their site, but they don't seem to have one listed for the actual Windows Key.
The only solution I found was....
However, the key strokes to show the desktop is Winkey+D
But, I can't seem to make using the ^{ESC} work with the letter "D"
All I get is the Start menu popping up.
So, exactly how do I simulate "Winkey+D" with SendKeys???
Any input will be greatly appreciated.
The only solution I found was....
VB.NET:
SendKey.Send("^{ESC}")
However, the key strokes to show the desktop is Winkey+D
But, I can't seem to make using the ^{ESC} work with the letter "D"
VB.NET:
SendKey.Send("^{ESC}(d)")
All I get is the Start menu popping up.
So, exactly how do I simulate "Winkey+D" with SendKeys???
Any input will be greatly appreciated.
Last edited: