From: Philosophaie on
In "View Code" of Userform1 I can not get UserForm1.ComboBox1 to initialize:
item1
item2
when I show the userform.

Private Sub CommandButton1_Click()
With UserForm1.ComboBox1
.AddItem "item1"
.AddItem "item2"
End With
..
Userform program
..

From: JLGWhiz on
The initialize event occurs with the UserForm, not the ComboBox.

Private Sub UserForm_Initialize()
With Me.ComboBox1
.AddItem "item1"
.AddItem "item2"
End With
End Sub

The ComboBox should then display the two items as options in the drop down.

"Philosophaie" <Philosophaie(a)discussions.microsoft.com> wrote in message
news:A442E23E-D51D-4C38-BA46-EF9E75A0807F(a)microsoft.com...
> In "View Code" of Userform1 I can not get UserForm1.ComboBox1 to
> initialize:
> item1
> item2
> when I show the userform.
>
> Private Sub CommandButton1_Click()
> With UserForm1.ComboBox1
> .AddItem "item1"
> .AddItem "item2"
> End With
> .
> Userform program
> .
>