Dialog with Document Description

J

Joseph N.

How can I make all new documents pop up the document properties
dialog and require the user to add a document description?
 
J

Joseph N.

Try "Tools", "Options", "Save" TAB, check the "Prompt for
document properties".

Yes, normally that would work. But my situation is different
because there's another program and another process involved. I
have a document management system that opens and names new
documents based on *its* templates, which are .doc not .dot files.
The first time the actual document opens in Word for editing, it
is already named and saved. As I recall, it's in the course of
the first save that the procedure you suggested happens. So, is
there another way to get at the same result?
 
J

Joseph N.

So, is there another way to get at the same result?

Bill, I'm addressing the same issues with Word Pro, and the
solution there was to write a tiny script that opened the document
properties dialog when the document is opened. How can I do that
in Word, if that's the way to go?
 
B

Bill Foley

You can get the dialog box for Summary Info to open automatically when
creating a new document based on a template, but it doesn't work for a
document (at least it didn't work with the AutoOpen macro. The code for
getting the dialog box to open when creating a new document based on a
template would be:

Sub AutoNew()
With Dialogs(wdDialogFileSummaryInfo)
.Show
End With
End Sub

--
Bill Foley, Microsoft MVP (PowerPoint)
Microsoft Office Specialist Master Instructor
www.pttinc.com
Check out PPT FAQs at: http://www.rdpslides.com/pptfaq/
"Success, something you measure when you are through succeeding."
 

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