I am creating a small game that requires keystrokes. As you may know a form gets keystrokes like a textbox does. When you hold down a key it pauses for a while before continuing. Is there a way I can make my form so that it does not the delay. As of right now I am using
this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Form1_KeyDown);
and
public void Form1_KeyDown(object sender, KeyEventArgs e) { switch (e.KeyDown) { case Keys.Left: keystroke = "left"; break; } }Thanks