I have a textbox1 and some more textbox with keypress event that change Enter key to Tab.
I have a button with click event: {textbox1.Focus();}.
The problem is that, when I press Enter key to fire button's Click event, the textbox1 gets focusing and cursor moves to next control (because textbox keypress event). It work well if I click on button by mouse.
Now I want pressing enter key on button without passing Enter key value to other controls.
Please help
