PDA

View Full Version : Solved: Reset Button duplicates combobox list



gabethegrape
03-25-2009, 12:20 PM
Whenever the "Reset" command is run, the combobox items duplicate (inside the dropdown list). How can I correct this?

tpoynton
03-25-2009, 01:12 PM
need to clear the prior entries:

With cboDropdown
.Clear
.AddItem "1"
.AddItem "2"
.AddItem "3"
.AddItem "4"
.AddItem "5"
.AddItem "6"
.AddItem "7"
.AddItem "8"
.AddItem "9"
.AddItem "10"

End With

gabethegrape
03-25-2009, 02:16 PM
Thank you.