That's with option buttons GEM, check boxes can be dimmed checked or empty.
Main Topics
Browse All Topics' clear labels text boxes
If Check1.Value Then
Label10 = " "
Label9 = " "
Label11 = " "
Label12 = " "
Text1 = " "
Text2 = " "
ElseIf Check2.Value Then Label13 = " "
ElseIf Check3.Value = 2 Then Combo1.Clear
End If
End Sub
Elseif's aren't what i'm suppost to be using is it? you can only select one check box at a time. I was thinking the or statement might work but I don't know how to implement it. Also the combo1.clear doesn't work with Elseif I don't know why.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Hi,
You have 2 methods
1. use optionbutton
2. use this code to control your checkbox:
Dim click1 As Boolean
Dim click2 As Boolean
Dim click3 As Boolean
Private Sub Check1_Click()
If Not click1 Then Exit Sub
click2 = False
click3 = False
Me.Check1.Value = 1
Me.Check2.Value = 0
Me.Check3.Value = 0
click2 = True
click3 = True
End Sub
Private Sub Check2_Click()
If Not click2 Then Exit Sub
click1 = False
click3 = False
Me.Check1.Value = 0
Me.Check2.Value = 1
Me.Check3.Value = 0
click1 = True
click3 = True
End Sub
Private Sub Check3_Click()
If Not click3 Then Exit Sub
click1 = False
click2 = False
Me.Check1.Value = 0
Me.Check2.Value = 0
Me.Check3.Value = 1
click1 = True
click2 = True
End Sub
Add your code
I think you will success
Business Accounts
Answer for Membership
by: GEM100Posted on 2000-07-05 at 15:16:04ID: 3194492
True, False