This is exactly what I ment, thank you.
I now have the combo box populated with the correct months in the UserForm_Initalize() event.
How do I then add the selected option to my bookmark? This is what I had previously:
With ActiveDocument .Bookmarks("month").Range _ .InsertAfter month End With
It is now not working. Do I need to do some kind of case statement to find out which month was selected?
Thanks
"Doug Robbins - Word MVP" wrote:
[Quoted Text] > Probably a combobox would be the most conventional for the user to be able > to select use one month. > > Assuming that your combobox is name cmbMonth, you would load it with the > months by using > > With cmbMonth > .AddItem "January" > .AddItem "February" > > > .AddItem "November" > .AddItem "December" > End With > > In most probably the Initialize() event of your form. > -- > 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 > > "parkin_m" <parkinm[ at ]discussions.microsoft.com> wrote in message > news:F252714F-392C-4D49-8194-B2B4B10C207D[ at ]microsoft.com... > > 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) > > >
|