Private Sub UserForm_Activate()
ComboBox1.DropDown
End Sub
Private Sub ComboBox1_MouseMove(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single)
ComboBox1.DropDown
End Sub
Private Sub UserForm_Activate()
ComboBox1.DropDown
End Sub
But when i click in a Textbox it closes,i understand it opens when form is activated.
I generally select the Textboxes first then towards the end make a selction from ComboBox
Private Sub UserForm_Change()
NameForDateEntryBox.DropDown
End Sub