Mulitple Selections in a Combo Box

  • Thread starter Thread starter sara115
  • Start date Start date
S

sara115

Is it possible in Word 2007 to select more than one choice from a combo box
(drop down) in a protected form? Thanks.
 
Is it possible in Word 2007 to select more than one choice from a combo box
(drop down) in a protected form? Thanks.

No. The only kind of control you can insert into the body of a document that
allows multiple selection is the ActiveX list box (*not* combo box) from the
Legacy Controls button on the Developer ribbon. In its Properties dialog, set
MultiSelect property to either fmMultiSelectMulti or fmMultiSelectExtended. (The
"extended" value makes it behave like other multiple-selection controls in
Windows. See the Help topic on list boxes.)

The list box control in a UserForm can also be made to allow multiple selection
in the same way.
 
Back
Top