View Single Post
  #6   Report Post  
Posted to microsoft.public.word.docmanagement
terilad terilad is offline
external usenet poster
 
Posts: 12
Default Save option on close

Thanks Jay,

Thats exactly what I wanted, I know it seems strange but its for filling in
forms.

Many thanks

Mark

"Jay Freedman" wrote:

The macro is simply

Sub CloseWithoutSave()
ActiveDocument.Close wdDoNotSaveChanges
Application.Quit
End Sub

which you can assign to a keyboard shortcut or a button.

But don't come whining that you closed a document without saving and now you
want it back -- there won't be anything to recover!

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.

terilad wrote:
Hi,

Can someone help me to stop the pop up box if a document has changed
and you hit close it appears with a message box do you want to save
changes, I am looking to stop this pop up, is there a macro to stop
this from happening so the document just closes without asking to
save.

Many thanks

Mark



.