Doug
Mon Mar 03 11:31:20 PST 2008
For what you want to do, you cannot use formfields, but must use a userform.
See the article "How to create a Userform" at:
http://word.mvps.org/FAQs/Userforms/CreateAUserForm.htm
Then what you need is what has been referred to as cascading listboxes,
where you populate a listbox (or combobox) with a series of items that are
dependent upon a choice made in a previous listbox (or combobox).
To see how to do that, see the Cascading Listboxes section of the following
page on fellow MVP Greg Maxey's website:
http://gregmaxey.mvps.org/Populate_UserForm_ListBox.htm
In your case, as you want to be able to select multiple symptoms, it will be
a listbox that you need to display those and it will need to have it's
multiselect property set to True.
To see how to get hold of the items that have been selected in the listbox,
see the article "How to find out which Items are selected in a Multi-Select
ListBox" at:
http://www.word.mvps.org/FAQs/Userforms/GetMultiSelectValues.htm
--
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
"Jean-Guy Marcil" <JeanGuyMarcil@discussions.microsoft.com> wrote in message
news:141B0E52-4D0F-41D5-A18A-BA421FEFB23E@microsoft.com...
> "Kim K" wrote:
>
>> no not a fill in the blank, this is a choices menu, can I create (and
>> how) a
>> listbox of combo box that will allow for multiple answers. Secondary
>> disabilities can be more than one so I need tha bility to select more
>> than
>> one instead of creating 5 seperate drop down menus ...............
>
> Yes, I know... I did understand your requirements.
> What you want should be done through the use of a protected form. Again,
> as
> I wrote in my previous reply, got to that page and look at the 5 links
> that
> will teach you how to create a form, which maybe a "Fill-in the blank" or
> a
> "Select items in this list" type of form. A form is still a form,
> regardless
> of the design type or content.
>
> If you do not want to use a form, use the list box from the Controls
> toolbar
> (ActiveX controls), but those may create a a security-issue problem if you
> distribute your document to other users whose Office/Windows settings
> maybe
> different from yours. The only way to make sure that there are no security
> issues, is to use a form...