How can you get the first option in a droplist to be in the combobox as default value? So when you don't choose anything else from the droplist the first item on the list is chosen because it's already in the combobox when a userform is shown.
erstellt am: 10. Mai. 2005 17:13 <-- editieren / zitieren --> Unities abgeben: Nur für truuck
Hi, try this one;-)
Code: Private Sub UserForm_Initialize() With ComboBox1 .AddItem "one" '0 .AddItem "two" '1 .AddItem "three" '2 .ListIndex = 2 'shows three End With End Sub