I am trying to disable some fo the checkboxes on a form that is attached to a query. The form is a continious form with 2 checkboxes and a label next to each checkboxes
Private Sub Form_Load()
If Me.SubZip.Value = "Mariposa" Then
Me.chkMail.Enabled = True
Else
Me.chkMail.Enabled = False
End If
End Sub
In the form load, I wanted to disable a couple of the checkboxes if the label values meets some condition( see code above). The code above is disabling all the check boxes.
help please. . thank you.
Private Sub Form_Load()
If Me.SubZip.Value = "Mariposa" Then
Me.chkMail.Enabled = True
Else
Me.chkMail.Enabled = False
End If
End Sub
In the form load, I wanted to disable a couple of the checkboxes if the label values meets some condition( see code above). The code above is disabling all the check boxes.
help please. . thank you.