Allow users to choose multiple options within a single dropdown me

L

Larry

How do I allow users to choose multiple options within a single dropdown menu
in a Word Document? I've created a template in Word 2003 and have multiple
dropdown menus. I need to have the ability to choose multiple items within a
single dropdown box. I also have to have the ability to put a dropdown box
within a dropdown box (if a chosen item has a sub-catagory).
Thank You.
 
J

Jay Freedman

Larry said:
How do I allow users to choose multiple options within a single
dropdown menu in a Word Document? I've created a template in Word
2003 and have multiple dropdown menus. I need to have the ability to
choose multiple items within a single dropdown box. I also have to
have the ability to put a dropdown box within a dropdown box (if a
chosen item has a sub-catagory).
Thank You.

The dropdown control from the Forms toolbar cannot do this -- it's
single-selection only.

You can create a UserForm (a custom dialog box) in the VBA programming
language (http://www.word.mvps.org/FAQs/Userforms/CreateAUserForm.htm) and
place a list box on the UserForm. That list box can handle multiple
selection; set its MultiSelect property to fmMultiSelectExtended. The
UserForm can be made to appear when a text form field is entered, and to put
the result into the form field -- see
http://gregmaxey.mvps.org/FormField_UserForm_ListBox.htm.

I've never seen, in any software environment and certainly not in a
Microsoft program, a dropdown within a dropdown. You can program macros so
that making a selection in one dropdown changes the entries available in
another (separate) dropdown; see
http://gregmaxey.mvps.org/Linked_DropDown_Fields.htm.

--
Regards,
Jay Freedman
Microsoft Word MVP
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.
 

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