I'm using SendKeys.SendWait("+(l)");
for sending Ctrl+L, but it does not work. I tried '+l', '+(L)', +{L} but none of them are working. What may be the cause?
Asked
Active
Viewed 94 times
2

Ruwan Liyanage
- 333
- 1
- 13
-
3`SendKeys.SendWait("^(l)")` – Falco Alexander Jul 21 '20 at 08:02
-
Falco Alexander, Thanks a lot it worked. – Ruwan Liyanage Jul 21 '20 at 08:07
1 Answers
1
it's
SendKeys.SendWait("^(l)")

Falco Alexander
- 3,092
- 2
- 20
- 39
-
1@nawala Please mark this as correct answer by clicking the "check" button left of the answer, You will then get 2 points, and Falco will get 15 points. – SQL Police Jul 21 '20 at 08:20