Thanks to your help I now managed to design a basic form. I am now trying to
check box form field that are mutually exclusive. Can you help again? i.e.
For example in Marital status if one choose married they Automatically cannot
choose SEPARATED or SINGLE or vise versa
Insert each of the check boxes that you want to behave in an exclusive
fashion into a table cell and then have a macro containing the following
code run on entry to each of those checkboxes
Dim oField As FormField
For Each oField In Selection.Cells(1).Range.FormFields
oField.CheckBox.Value = False
Next oField
Selection.FormFields(1).CheckBox.Value = True
--
Hope this helps.
Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.
No, it is not my full time job. More like and addiction. However, most of
what I know I have learnt by finding out how to do things to help other
people.
--
Hope this helps.
Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.
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.