I have a combobox with the DropDownList property that fires some code in the SelectionChangeCommitted event. It works fine with a mouse click, but if I try to select using the arrow keys that it launches after the first keystroke. How to make it work as a standard drop-down menu that can be moved with the mouse and keys?
private void dd_jobs_SelectionChangeCommitted(object sender, EventArgs e) { Pk_Error p = new Pk_Error(ref_num, j[dd_jobs.SelectedIndex]); p.Show(); p.BringToFront(); this.Close(); }
pdizz source share