I need to get the following to work:
private void KeyDown(object sender,KeyEventArgs e){
textbox1.Enabled=false;
numericUpDown1.Enabled=true;
numericUpDown1.Select();
}
The current problem is, that the NumericUpDown is getting enabled, but not selected. (A textbox' KeyDown event is executing the above code)