View Single Post
  #3   Report Post  
Posted to microsoft.public.word.docmanagement
Graham Mayor Graham Mayor is offline
external usenet poster
 
Posts: 19,312
Default Mutually Exclusive Check Boxes

At its simplest, the following macro run on exit from Check1 will set Check2
& 3 false if Check1 is true.
You can run similar macros from each field to set the values of the others.

Sub isChecked()
With ActiveDocument
If .FormFields("Check1").CheckBox.Value = True Then
.FormFields("Check2").CheckBox.Value = False
.FormFields("Check3").CheckBox.Value = False
End If
End With
End Sub

http://www.gmayor.com/installing_macro.htm

If you want to be more adventurous see
http://word.mvps.org/faqs/tblsfldsfm...bxscontent.htm

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org


TechWriter wrote:
In Word forms, can check box selections be made mutually exclusive?
Meaning, if I check one box, the other check boxes are deselected.