تماشای ویدئو Excel VBA Userform Combobox Add Item از آی-ویدئو
Excel VBA Userform Combobox Learn how o add item
The source code used in this video:
Private Sub UserForm_Initialize()
With cbDays
.AddItem "Monday"
.AddItem "Tuesday"
.AddItem "Wednesday"
End With
End Sub