When a ComboBox is clicked this causes it to be selected in the window. Is there a way to perform the equivalent of a javascript blur()
+1
A:
Not directly. You can try focusing the root parent of the combobox or another element, though.
comboBox1.TopLevelControl.Focus();
or
someControl.Focus();
arul
2008-12-11 12:19:55