Question : Check Box issue

How can I prevent a user from choosing 2 check boxes, I want the user to pick one of the 2 options.

Answer : Check Box issue

ok ... two check boxes ... chk1 and chk2

Put this in the AfterUpdate events ... which will look like so:
Private Sub chk1_AfterUpdate(
    If Me.chk1 = True Then Me.chk2 = False
End Sub

Private Sub chk2_AfterUpdate()
    If Me.chk2 = True Then Me.chk1 = False
End Sub

mx
Random Solutions  
 
programming4us programming4us