check box in Word document (1 Viewer)

eugz

Registered User.
Local time
Yesterday, 20:45
Joined
Aug 31, 2004
Messages
128
Hi All.
I would like to insert 3 check box in Word file. And I would like if user check one box other 2 becoming uncheck. If say shortly only one check box posiable to be checked. How to do that?
Thanks.
 

burrcm

Registered User.
Local time
Today, 10:45
Joined
Jun 6, 2007
Messages
175
Set the first checkbox control like this -

Private Sub CheckBox1_Click()
If CheckBox1 = True Then CheckBox2 = False
If CheckBox1 = True Then CheckBox3 = False
End Sub

And modify it for the other two.

This will allow you to check one of the three only.

Chris B
 

Users who are viewing this thread

Top Bottom