Can someone tell mew how to send Shortcut keys in vb.net? The shortcut keys are {LEFTWIN} + {ADD} amd {LEFTWIN} + {SUBTRACT}. Tried SendKeys.Send it does not work.
You said you tried
SendKeys.Sned("KEY")
The correct is
SendKeys.Send("KEY")
Besides that, what key you are referring with "Leftwin" ?
Sorry for that, I never used Sendkeys, and I knew "LWIN" by Winkey...
Btw, Try using
SendKeys.Send(Keys.LWin)
SendKeys send string, so this SendKeys.Send(Keys.LWin) actually should send the code of Keys.LWin