whoabuddy@gmail.com was telling us:
whoabuddy@gmail.com nous racontait que :
> Normally, no, but we have the directory structure setup in NTFS so
> that the user can import files into the new document management
> system, delete files, but not write to the folder. My concern is not
> as much the directory's permission structure itself but getting Word
> to delete the orginal file on a save as. Thanks though!
Well, not sure if this will work with your setup, but try this:
'_______________________________________
Sub FileSaveAs()
Dim myFileName As String
myFileName = ActiveDocument.FullName
Dialogs(wdDialogFileSaveAs).Show
Kill myFileName
End Sub
'_______________________________________
If the Sub is called FileSaveAs, it will be invoked whenever you do File >
SaveAs
But not when you do File > Save (For that, called the macro Sub
FileSave()... End Sub)

Signature
Salut!
_______________________________________
Jean-Guy Marcil - Word MVP
jmarcilREMOVE@CAPSsympatico.caTHISTOO
Word MVP site: http://www.word.mvps.org
whoabuddy@gmail.com - 27 Apr 2006 22:21 GMT
Thank you, I will give it a shot!