list doubled in combo box

VBABEGINER

Well-known Member
Joined
Jun 15, 2011
Messages
1,284
Office Version
  1. 365
Platform
  1. Windows
Hi All,
Below is my code. After every submit of my record, my user form goes initialize. This makes doubled the items in cmbActivity & cmbTaskStatus..

Any thing on this, which will not double the items in list..

Code:
Private Sub UserForm_Initialize()
mTimer.TimerOn 10
BtnStart.Enabled = False
BtnStop.Enabled = True
    
UserForm1.BackColor = RGB(200, 215, 223)


Dim Uname As String
Uname = Application.UserName
Me.LblUname = Uname


With cmbActivity
    .AddItem "Core"
    .AddItem "Non-Core"
End With


With cmbTaskStatus
    .AddItem "WIP"
    .AddItem "Completed"
    .AddItem "Pend (Queries) - Tech"
    .AddItem "Pend (Queries) - Non-Tech"
    .AddItem "Pend (Queries) - INPUT"
    .AddItem "Closed - Succesfull"
    .AddItem "Closed - Un-Succesfull"
    .AddItem "Re-Assign"
    .AddItem "Diary"
End With
End Sub
 

Excel Facts

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.
Try added ".Clear" to each Combobox , as below:-
Code:
With ComboBox1
    .Clear
    .AddItem "Dog"
    .AddItem "Cat"
    .AddItem "Mouse"
End With
 
Upvote 0

Forum statistics

Threads
1,223,896
Messages
6,175,262
Members
452,627
Latest member
KitkatToby

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top