R
Rose B
I have utilised some coding that I got from this forum to manage MDE
versions. On most PCs it works fine, but on a couple of users I get Access
Denied error when trying to do the FileCopy. The code that I use is below.
Any ideas? (There is no issue doing the copy manually using copy/paste)
If ServerVersion > LocalVersion Then
DoCmd.OpenForm "UpdateNotice"
Kill LocalFile
FileCopy ServerFile, LocalFile
DoCmd.Close acForm, "UpdateNotice"
End If
versions. On most PCs it works fine, but on a couple of users I get Access
Denied error when trying to do the FileCopy. The code that I use is below.
Any ideas? (There is no issue doing the copy manually using copy/paste)
If ServerVersion > LocalVersion Then
DoCmd.OpenForm "UpdateNotice"
Kill LocalFile
FileCopy ServerFile, LocalFile
DoCmd.Close acForm, "UpdateNotice"
End If