I made an on screen keyboard with c# Windows Forms. I use Sendkeys.Send() function to send the keystrokes. All letters but the letter "i" works fine. When I press the letter "i" on the keyboard when Microsoft Word is open, it sends "Ctrl + Alt + I" and opens the print dialog. It is same in Notepad++ as well. But it works fine when I try to type in notepad.
In my code I send the keys with SendKeys.Send(value); where value is the text of the button which is pressed. I get the text with the following code:
string s = ((Button)sender).Text;
Any comments about why it does not work properly? Thanks in advance.
Edit: I have created a new windows forms project with just a button and the whole code is below. Still not working. Any idea would be appreciated.
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
SendKeys.Send("i");
}
// Prevent form being focused
const int WS_EX_NOACTIVATE = 0x8000000;
protected override CreateParams CreateParams
{
get
{
CreateParams ret = base.CreateParams;
ret.ExStyle |= WS_EX_NOACTIVATE;
return ret;
}
}
}
The overridden function is to prevent the form being focused. so that i can send the keystrokes to the other application which has the focus.
value, this is not a keyword? You might in some cercumstance find that rather than casting with((MyClass)object)that casting using(object as MyClass). The second will return null if obj isn't a MyClass, rather than throw a class cast exception. – Killercam Jan 26 '12 at 9:37sis getting? This will help you narrow down the problem. – Kendall Frey Jan 26 '12 at 13:40