First, a couple of questions whose answers will determine what kind of
advice you need:
- What kind of "form" is this? A "protected form" with fields from the Forms
toolbar? A VBA-driven userform? Something else, such as an unprotected
document?
- What do you mean by a "drop down menu"? What behavior do you want?
In a protected form, you can have a "dropdown form field" but there is no
list box or combo box. In a VBA userform you can have either a list box or a
combo box, and the combo box can be limited so the user can only choose the
entries you supplied. In a nonprotected document, the object of choice is an
AutoTextList field. You could use a combo box from the Control Toolbox, but
that's more trouble than it's worth.
Trying to describe the "how" would be a waste of time until you choose the
"what".
--
Regards,
Jay Freedman
Microsoft Word MVP FAQ:
http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.
parkin_m wrote:
> Hi again!
>
> I have a drop down menu that I would like to fill with "January,
> Feburary, March.. etc"
>
> I have the dropdown menu inside a form. Would a list box or a combo
> box be better?
>
> Also how do I actually fill the box with the dates? (I dont want to
> link to some external place since the months will never change)