Thanks
one part is resolved, buit i have another part that appear!!!
when i put the macro it works well in the first box, but i have another one,
that i want to put the same value that are in the box. how i do this??
thanks for any help.
> http://word.mvps.org/FAQs/MacrosVBA/NumberDocs.htm
Doug Robbins - Word MVP - 20 Oct 2005 18:43 GMT
Either create a second bookmark in the template and add another line of
code:
ActiveDocument.Bookmarks("newbookmarkname").Range.InsertBefore Format(Order,
"00#")
Or in the location where you want the number to be duplicated, insert a
cross reference to the text of the Order bookmark and add a line
ActiveDocument.Fields.Update
to the code so that it updates the cross reference field to show the value
that was entered into the bookmark

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
> Thanks
> one part is resolved, buit i have another part that appear!!!
[quoted text clipped - 5 lines]
>
>> http://word.mvps.org/FAQs/MacrosVBA/NumberDocs.htm