I've never used user forms as part of a macro. I am trying to create a list
box in a user form but can't figure how to enter the list of months. I have
created the user form and inserted the list box, just can't type the months
in...any answers?
Thanks in advance
In your userform (double-click the form), paste the following code to
"UserForm_Activate". Assume that your listbox is called "ListBox1".
Private Sub UserForm_Activate()
Dim tmp As Integer
With ListBox1
.Clear
For tmp = 1 To 12
.AddItem Format(DateSerial(2006, tmp, 1), "mmmm")
Next
End With
End Sub
Regards,
Edwin Tam
edwintam@vonixx.com
http://www.vonixx.com
> I've never used user forms as part of a macro. I am trying to create a list
> box in a user form but can't figure how to enter the list of months. I have
> created the user form and inserted the list box, just can't type the months
> in...any answers?
>
> Thanks in advance