I'm trying to create an application where I can simulate a keyboard ,
private void a_Click(object sender, EventArgs e)
{
SendKeys.Send("a");
}
private void b_Click(object sender, EventArgs e)
{
SendKeys.Send("b");
}
private void c_Click(object sender, EventArgs e)
{
SendKeys.Send("c");
}
so like when the user press a button , the application will press the "actual" letter ,
Example: user press a_Click , press the button A on keyboard
now SendKeys Class does not support all the keyboard but only certain press , as shift , enter , space etc...
But what about the rest of the keyboard?
Thank you