If you add the following autonew macro to your document, it will prompt on
creating a new document and write what you enter in the box to the Category
document property then update any fields in the document. If you are using a
docproperty field elsewhere than in the main text area, you may need a more
robust update routine to catch it - see
http://www.gmayor.com/installing_macro.htm
Sub AutoNew()
Dim sCat As String
sCat = InputBox("Enter category", "Category")
ActiveDocument.BuiltInDocumentProperties("Category").Value = sCat
ActiveDocument.Fields.Update
End Sub
--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP
My web site
www.gmayor.com
Word MVP web site
http://word.mvps.org
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
"Mumbly_Joe" <(E-Mail Removed)> wrote in message
news:37A8B23F-EEC9-4444-BE21-(E-Mail Removed)...
> So my question might be a little convoluted but here goes nothing.
>
> I'm trying to create a template that has some kind of textbox that changes
> the document property (specifically "category") to what ever has been
> typed
> in the box.
>
> I'm not really certain where to begin