I agree with Suzanne - it is better to have this on and clear out the
unwanted files occasionally. However, you can force it off each time you
open or create a new document with a pair of auto... macros. In the examples
below I have included some other settings that force the user environment.
The only one that matters here for your application is the last line -
Options.CreateBackup = False
The other lines you can keep or delete as preferred.- - see
http://www.gmayor.com/installing_macro.htm
Sub Autonew()
ActiveWindow.ActivePane.DisplayRulers = True
With ActiveWindow.View
.Type = wdPrintView
.Zoom.Percentage = 100
End With
CommandBars("Reviewing").Visible = False
Options.CreateBackup = False
End Sub
Sub AutoOpen()
ActiveWindow.Caption = ActiveDocument.FullName
ActiveWindow.ActivePane.DisplayRulers = True
With ActiveWindow.View
.Type = wdPrintView
.Zoom.Percentage = 100
End With
Options.CreateBackup = False
End Sub
--
<>>< ><<> ><<> <>>< ><<> <>>< <>>< ><<>
Graham Mayor - Word MVP
Web site
www.gmayor.com
Word MVP web site
www.mvps.org/word
<>>< ><<> ><<> <>>< ><<> <>>< <>>< ><<>