Hello,
There easy/fast way to develop Prompt window with combobox and disabled Accept button until there is selected value in combo? Need returned OK/cancel and selected value. Is that possible? something like:
DialogResult dialog_result;ComboboxDialog cbd = new ComboboxDialog();dialog_result= cbd.ShowDialog();if (dialog_result == DialogResult.Ok){ cbd.SelectedValue...}
Thanks!