How do I capture the enter key in a windows forms combo box when the combobox is active?
I\'ve tried to listen to KeyDown and KeyPress and I\'ve created a subclass a
private void comboBox1_KeyDown( object sender, EventArgs e ) { if( e.KeyCode == Keys.Enter ) { // Do something here... } else Application.DoEvents(); }