vote up 0 vote down star

I am running on an issue using C# SendKeys.Send method. I am trying to replace keyboard keys with other keys, for example when I press "a" in keyboard I want that key to be "s" for example, when I am doing this in my code:

if ((Keys)keyCode== Keys.A)
            {                    
                SendKeys.Send("s");                    

            }

Right now I get only "sa" character printed in my notepad, but instead of printing "sa" I need to get only "s" character in this case because when I press "a" on my keyboard, "a" must be replaced with "s".

I tried removing the last character by adding this line:

SendKeys.Send("{BS}");

But all I got is "s" character removed and "a" character was there.

How can I prevent this from happening?

flag
Is this for a prank? – Chad Ruppert Jun 18 at 13:55
No this is for a project that I was assigned to do. In my own language we have some special characters "ë" and "ç" which I have to remap the "[" and "]" keys to match the special characters that I showed you, in order when the people write to our native Albanian language to ahve the keys remapped. – milot Jun 18 at 13:58

9 Answers

vote up 2 vote down

I would reverse my calls:

SendKeys.Send("{BS}");

SendKeys.Send("S");

EDIT (After Question Updated):

If you're working with the string (for your special characters), can you not just capture the string generated by the key press ("a") and modify it by setting the string to the unicode value of the character you're attempting to represent? If the other solutions people have been mentioning aren't working, that's where I'd try next...

link|flag
vote up 1 vote down

I might be making a bad assumption, but if you are using this with a text box, you could:

	private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
	{
		if (e.KeyChar == 'a')
		{
		    e.Handled = true;
		}
	}

	private void textBox1_KeyDown(object sender, KeyEventArgs e)
	{
		if (e.KeyCode == Keys.A)
		{
			e.Handled = true;
			SendKeys.Send("s");
		}
	}

Or even simpler:

	private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
	{
		if (e.KeyChar == 'a')
		{
		    e.Handled = true;
		    SendKeys.Send("s");
		}
	}

Or if this isn't for use just with a text box, then can't you just revers your backspace and s key sends?

        if ((Keys)keyCode== Keys.A)
        {                    
            SendKeys.Send("{BS}"); // remove A
            SendKeys.Send("s");    // add S
        }
link|flag
Just a note: I posted this before the original question was changed to state that he is working with notepad. – rally25rs Jun 18 at 13:44
I need this to be global, I am using Windows Hooks to get the global keys that are pressed. – milot Jun 18 at 13:45
by switching key sends doesn't work. – milot Jun 18 at 13:48
vote up 1 vote down

Another option you have is to use Low-Level keyboard hooks to trap the old character and then send the new one. It will require some P/Invoke, but it gives you the ability to completely trap the original key so apps don't even see it.

link|flag
vote up 1 vote down

I think that the SendKeys.Send("{BS}"); approach will never work (in either order). That's because the original key-pressed/key-released event gets processed after SendKeys.Send is posted. I think you should somehow cancel the key-down/key-up event for the character you want to remove before it is processed by the target window procedure (e.g. notepad's).

link|flag
vote up 1 vote down

I get "a" printed because backspace is sent immediately after "s" and it deletes the "s" character. How can I prevent this from happening?

uhm.....

don't send backspace immediately after sending s?

if ((Keys)keyCode== Keys.A)
            {
                Sendkeys.Send("{BS}"); // Deletes the "A" (already sent)
                SendKeys.Send("s"); // Sends the "S"
            }
link|flag
but I get "sa" characters! – milot Jun 18 at 13:44
vote up 1 vote down check

I solved this problem by registering global hot keys. Thank you. This was the resourse that I used to solve my problem.

link|flag
vote up 0 vote down

SendKeys.SendWait

link|flag
It doesn't help, I tried :) – milot Jun 18 at 13:43
vote up 0 vote down

This may not be what you want/need, but if you just want to remap some keyboard keys, I would suggest looking into using another keyboard layout, or creating a custom layout. You can create new layouts with this:

http://msdn.microsoft.com/en-ca/goglobal/bb964665.aspx

link|flag
Thank you very much for your suggestion, but I need to remap the keyboard layout programmaticaly. – milot Jun 18 at 13:52
vote up 0 vote down

Have you tried switching .Send({BS}) with .Send("s")? Otherwise, can you clarify?

link|flag
I edited the post, you can re-read it. – milot Jun 18 at 13:41

Your Answer

Get an OpenID
or

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