S
slacker4officechart
I'm new to dev. I have a Document with a combobox on it and I added this code
to the vba. I can't figure how to run the form...da... I'm sure it's easy but
please help me get started...
thanks in advance,
steve
Option Explicit
Private Sub UserForm_Initialize()
With Me.ComboBox1
.AddItem "value1"
.AddItem "value2"
.AddItem "value3"
.AddItem "value4"
.AddItem "value5"
End With
End Sub
to the vba. I can't figure how to run the form...da... I'm sure it's easy but
please help me get started...
thanks in advance,
steve
Option Explicit
Private Sub UserForm_Initialize()
With Me.ComboBox1
.AddItem "value1"
.AddItem "value2"
.AddItem "value3"
.AddItem "value4"
.AddItem "value5"
End With
End Sub