I\'ve several textboxes. I would like to make the Enter button act as Tab. So that when I will be in one textbox, pressing Enter will move me to the next one. Could you plea
I would combine what Pharabus and arul answered like this:
private void textBox_KeyPress(object sender, KeyPressEventArgs e) { if (e.KeyChar == ‘\r’) { e.Handled = true; parentForm.GetNextControl().Focus() } }
Let me know if this helps! JFV