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 use this code in one of the text box keydown event
if (e.KeyData == Keys.Enter) { e.SuppressKeyPress = true; SelectNextControl(ActiveControl, true, true, true, true); }
Unable handle this keydown event for all text boxes in my form. Suggest something. Thanks
keydown