Check macro for word save

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

Guest

Is there any possibility of checking (and trapping the event) whether the user is trying to save the word document thru a macro?
 
You can trap the DocumentBeforeSave event, which might be sufficient; but
bear in mind that the user still gets a chance to cancel the save after this
event has been fired.

Or you can write macros called FileSave, FileSaveAs and FileSaveDefault --
these will run in place of the built-in commands (it's then up to you to
save the document as part of your code).


Jones said:
Is there any possibility of checking (and trapping the event) whether the
user is trying to save the word document thru a macro?
 
Back
Top