Hi, I'm trying to use the enter key on the pocket pc keyboard. Is there anyway that I can click on the enter key on the pocket pc keyboard to execute anything?
Hi, I'm trying to use the enter key on the pocket pc keyboard. Is there anyway that I can click on the enter key on the pocket pc keyboard to execute anything?
put this in you constructor code: this.Enter += new System.EventHandler(this.MainForm_Enter); And this to handle the event: private void MainForm_Enter(object sender, System.EventArgs e) { //put any code here to handle the enter key } Cheers.