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
 
Back
Top