How do i to change title property without enter to the properties?

P

Pablo Amarfil

Hello, i need to know how can i do to manage the title property description
without enter to the properties of word document.
Any ideas?

Thx
 
P

Peter Jamieson

Ways to set the property include
a. use VBA, e.g. using

ActiveDocument.BuiltInDocumentProperties(wdPropertyTitle) = "my new title"

b. use a TITLE field somewhere in the body text of the document , e.g.

{ TITLE "my new title" }

c. use a TITLE field with an embedded FILLIN field

{ TITLE { FILLIN "Type the Title of this document" \d { TITLE } } }

where all the {} are the special field code brace pairs you can insert
using ctrl-F9

Peter Jamieson

http://tips.pjmsn.me.uk
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top