This question is locked. New answers and comments are not allowed.
It seems no matter what I do, the RadCombBox will not receive focus with the following line of code (even when AllowShowFocusCues=True):
RadComboBox.Focus
It will however receive focus if I insert the following ridiculous line of code after the Focus:
RadComboBox.Focus
RadComboBox.Focus
It will however receive focus if I insert the following ridiculous line of code after the Focus:
RadComboBox.Focus
System.Windows.Forms.SendKeys.Send(
"{TAB}")
Am I missing something about the focus event on this control? I should never have to use the SendKeys.