Are you trying to get code to insert a combobox in a document or to insert
the item that is selected in a combobox on a userform into a bookmark in the
document?
For the latter, you first need to add the combobox to the userform and then
you need to populate it with the information to be selected. That is
usually done with the Initialize() event of the userform, and for just three
names, it would be simple enough to use the .AddItem function for a combobox
With Combobox1
.AddItem "Name1"
.AddItem "Name2"
.AddItem "Name3"
End With

Signature
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
> OK, call me stupid, but I cannot for the life of me get a combobox to
> work,
[quoted text clipped - 61 lines]
>> >
>> > Thanks in advance.
Mark - 02 Nov 2006 18:09 GMT
That did the trick Doug, many thanks!
> Are you trying to get code to insert a combobox in a document or to insert
> the item that is selected in a combobox on a userform into a bookmark in the
[quoted text clipped - 10 lines]
> .AddItem "Name3"
> End With