Dear All,
Am trying to set a checkbox when it should be ticked some text boxes will be dimmed. It's working perfect but there is a problem when opening the form for the first time - by default it's checked, I have to double click on it to remove the check to let me enter the data in the dimmed areas.
It should be like that

But actually when the form starts it's like that 

here is my code
Code:
Private Sub Holiday_Click()
If Me.Holiday = True Then
Me.WorkItems.Enabled = False
Me.SubProject.Enabled = False
Me.Hours.Enabled = False
Me.ProjectID.Enabled = False
Else
Me.WorkItems.Enabled = True
Me.SubProject.Enabled = True
Me.Hours.Enabled = True
Me.ProjectID.Enabled = True
End If
End Sub