Consulting

Results 1 to 3 of 3

Thread: Solved: Reset Button duplicates combobox list

  1. #1

    Solved: Reset Button duplicates combobox list

    Whenever the "Reset" command is run, the combobox items duplicate (inside the dropdown list). How can I correct this?

  2. #2
    VBAX Mentor tpoynton's Avatar
    Joined
    Feb 2005
    Location
    Clinton, MA
    Posts
    399
    Location
    need to clear the prior entries:
    [vba]
    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
    [/vba]

  3. #3
    Thank you.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •