mscallisto
Technical User
How do I make this macro execute when I close word?
Essentially I want to create a copy of my .doc file
when I'm done for the day.
I don't wish to use "always create backup copy" option.
Sub savewhendone()
ActiveDocument.SaveAs FileName:="BackupOfWord.doc", FileFormat:= _
wdFormatDocument, LockComments:=False, Password:="", AddToRecentFiles:= _
True, WritePassword:="", ReadOnlyRecommended:=False, EmbedTrueTypeFonts:= _
False, SaveNativePictureFormat:=False, SaveFormsData:=False, _
SaveAsAOCELetter:=False
End Sub
Essentially I want to create a copy of my .doc file
when I'm done for the day.
I don't wish to use "always create backup copy" option.
Sub savewhendone()
ActiveDocument.SaveAs FileName:="BackupOfWord.doc", FileFormat:= _
wdFormatDocument, LockComments:=False, Password:="", AddToRecentFiles:= _
True, WritePassword:="", ReadOnlyRecommended:=False, EmbedTrueTypeFonts:= _
False, SaveNativePictureFormat:=False, SaveFormsData:=False, _
SaveAsAOCELetter:=False
End Sub