You can subscribe to the Click event from the TextBoxArea and force the DropDown to open at each click.
e.g.,
<code>
private void Form1_Load( object sender, EventArgs e )
{
winComboBox1.TextBoxArea.Click += new EventHandler( TextBoxArea_Click );
}
void TextBoxArea_Click( object sender, EventArgs e )
{
winComboBox1.OpenDropDown();
}
</code>
Imported from legacy forums. Posted by CharlesB (had 272 views)