Document Details

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I'd like to make the "Prompt for Document Properties" on saving of a document
to be manditory on our network. i.e. When a user saves a Word or Excel
Document, they are asked to provide some basic details about he document
before saving. This is to simplify searching by keywork, etc.
 
JRS,

You could use something like this:

Sub FileSaveAs()
Dialogs(wdDialogFileSummaryInfo).Show
Dialogs(wdDialogFileSaveAs).Show
System.Cursor = wdCursorNormal
End Sub
 

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

Back
Top