sixteamparlay
IS-IT--Management
I recently updated a box from windows 2000 to windows vista and the same access .adp which ran on 2000 gives the error
"xp_sendmail: Access to the attachement file(s) is denied" although the user has the ability to both create and delete the .xls file. Has anyone experienced similar probs after upgrading to vista?
DoCmd.OutputTo acOutputStoredProcedure, str, acFormatXLS, stFileName, False
--------- the statement before this line runs correctly
Conn.Execute "execute spEmailReports @EmailAddress = '" & Me.txtEmailTo & _
"', @ReportName = '" & stFileName & _
"', @ReportTitle = '" & RptSubject & _
"', @ReportMessage = '" & RptMessage & "'"
--------- the statements after this line run correctly
'Delete the Excel file when done.
Set objFileSystem = CreateObject("Scripting.FileSystemObject")
objFileSystem.DeleteFile (stFileName)
Set objFileSystem = Nothing
"xp_sendmail: Access to the attachement file(s) is denied" although the user has the ability to both create and delete the .xls file. Has anyone experienced similar probs after upgrading to vista?
DoCmd.OutputTo acOutputStoredProcedure, str, acFormatXLS, stFileName, False
--------- the statement before this line runs correctly
Conn.Execute "execute spEmailReports @EmailAddress = '" & Me.txtEmailTo & _
"', @ReportName = '" & stFileName & _
"', @ReportTitle = '" & RptSubject & _
"', @ReportMessage = '" & RptMessage & "'"
--------- the statements after this line run correctly
'Delete the Excel file when done.
Set objFileSystem = CreateObject("Scripting.FileSystemObject")
objFileSystem.DeleteFile (stFileName)
Set objFileSystem = Nothing