VBABEGINER
Well-known Member
- Joined
- Jun 15, 2011
- Messages
- 1,284
- Office Version
- 365
- Platform
- 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..
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