I'm using SendKeys in an automation program for work. I've been plodding along, and am now trying to iron out all the bugs that I've created :-)

One of which, is that when I used SendKeys.Send("Test"), if the CapsLock is on, it will produce "tEST" as opposed to "Test".

I've used the following code to attempt to detect the capsLock state, and toggle it if necessary:

bool tmp = Control.IsKeyLocked(Keys.CapsLock);
if (tmp)
{
     keybd_event(0x14, 0x45, KEYEVENTF_EXTENTEDKEY, (UIntPtr)0);
     keybd_event(0x14, 0x45, KEYEVENTF_EXTENTEDKEY | KEYEVENTF_KEYUP, (UIntPtr)0);
     //Application.DoEvents(); <-Testing.
}

And then immediately use SendKeys to send some text:

SendKeys.SendWait("This Is An Over Capitalized Test String");

Which STILL comes out as: "tHIS iS aN oVER cAPITALIZED tEST sTRING".

Is there any way to get around this problem? Thanks :-)

Answered! Just to clarify for anyone else, the problem was resolved by using

SendKeys.SendWait("{CAPSLOCK}" + text);

I first attempted to use:

SendKeys.SendWait("{CAPSLOCK}");
SendKeys.SendWait("This Is An Over Capitalized Test String");

Which did not work at all.

link|improve this question

What if you do SendKeys.Send"{CAPSLOCK}Test" ? – V4Vendetta Nov 1 '11 at 4:05
feedback

1 Answer

up vote 2 down vote accepted

does this work for you?

    if(Control.IsKeyLocked(Keys.CapsLock))
        SendKeys.SendWait("{CAPSLOCK}This Is An Over Capitalized Test String");
    else
        SendKeys.SendWait("This Is An Over Capitalized Test String");
link|improve this answer
I just tested this, and it doesn't change the state of the CapsLock key at all. With the other method, it would turn the CAPS LED off, however this one doesn't even produce that. – HeWhoWas Nov 1 '11 at 19:56
Let me redact that statement. Using the code exactly as you wrote it solved the problem. I was calling SendKeys.SendWait("{CAPSLOCK}"); and then sending the string on another line. The key is in having the CAPSLOCK toggle in the same SendKeys statement as the rest of the text you're sending. Thanks! – HeWhoWas Nov 1 '11 at 20:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.