can I also force Word within the Word editor (so not in VBA) not to display
the verification message 'Should this document be saved ....'in case one
hits the windows close button to close the document?
Not directly. You can intercept any Word command by writing a macro with the
same name (eg FileSave, FileSaveAs, etc): your macro will run in place of
the built-in command. You can also trap the DocumentBeforeClose event.