open combo by code

  • Thread starter Thread starter Ofer B.
  • Start date Start date
O

Ofer B.

how can I open a combo box by code
I need to need the combo to drop down when the user is pressing another
button.

Ofer
 
takes two clicks dunno why!

Private Sub btnPopDown_Click(ByVal sender As
System.Object, ByVal e As System.EventArgs) Handles
btnPopDown.Click
ComboBox1.Capture = True
'ComboBox1.Focus()
ComboBox1_SelectedIndexChanged(sender, e)
End Sub
 
Back
Top