Form Checkboxes Word 2000

G

George

I'm creating a form with "Summary" and "Worksheet"
sections. Does anyone know how to create "mutually-
inclusive" (if that's right term) checkboxes in Word
tables? That is, if a user were to check or uncheck a box
in the worksheet section it would automatically check or
uncheck a box in the Summary section? Once again, any
suggestions would be greatly appreciated.

thanks!
 
D

Doug Robbins

Use the following code in a macro run on exit from the first checkbox

If ActiveDocument.FormFields("Check1").CheckBox.Value = True Then
ActiveDocument.FormFields("Check2").CheckBox.Value = True
Else
ActiveDocument.FormFields("Check2").CheckBox.Value = False
End If


--
Please respond to the Newsgroup for the benefit of others who may be
interested. Questions sent directly to me will only be answered on a paid
consulting basis.

Hope this helps,
Doug Robbins - Word MVP
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top