It may be that an Excel combo box can only display one field when it is collapsed. Does anyone know where that is documented, or is it just common knowledge?
I put a label over the combo box and adjusted its TOP property to line up with the combo text. The solution can be seen in the attachment.
Code:
Private Sub ComboBox1_Change()
If Not Application.EnableEvents Then Exit Sub
Me.Label1.Caption = Me.ComboBox1.Column(1)
Me.cmdClose.SetFocus
End Sub
EnableEvents is disabled in the form Activate event while the combo box is being populated, then enabled when finished.
Jerry
RESOLVED