Carly
Active Member
- Joined
- Aug 21, 2002
- Messages
- 370
I have got a form with some check boxes on that I would like to all be checked initially when the form is opened. The code I am using is as follows:
This works, however, they are slightly greyed out & you have to select them twice before you can remove it. Is there anyway that this can be changed so that it isn't greyed out initially?
Code:
Private Sub UserForm_Initialize()
chk_Original.Value = -1
chk_BranchManaged.Value = -1
chk_Nationals.Value = -1
chk_Dublin.Value = -1
chk_all.Value = -1
End Sub