I would be grateful if there are any suggestions - I have been wrestling with this for several days.
I am try to use a UserForm called from VBA to offer a drop down list for user selection.
When I create this Userform with a Combobox the box appears but there is nothing in it?
So I went for the simplest code I could think of where I put some data in the Combo box from VBA but it is exactly the same. The UserForm opens with the Combobox but it is empty - no banana visible anywhere!
I am doing something wrong here! I am in need of some guidance!
Many thanks,
DRILL
Firstly I created a UserForm with a single Combo Box in it.
Then I have the code below.
I am try to use a UserForm called from VBA to offer a drop down list for user selection.
When I create this Userform with a Combobox the box appears but there is nothing in it?
So I went for the simplest code I could think of where I put some data in the Combo box from VBA but it is exactly the same. The UserForm opens with the Combobox but it is empty - no banana visible anywhere!
I am doing something wrong here! I am in need of some guidance!
Many thanks,
DRILL
Firstly I created a UserForm with a single Combo Box in it.
Then I have the code below.
Code:
Private Sub UserForm3_Activate()
ComboBoxT.AddItem "banana"
End Sub
Last edited by a moderator: