S
Stephen Wright
I have an MS Access Project file that contains code to fax reports etc from
the application. User with administrator privilege has no problems running
the application. User without admin privilieges encounters the error
"Permission Denied" as soon as the application attempts the connect to the
fax server. Here is the code
Dim objFaxDoc As New FAXCOMLib.FaxDoc
Dim strOutputFilename As String
Dim strFaxNo As String
Dim iCtr As Integer
objFaxserver.Connect ("TS1")
Set objFaxDoc = objFaxserver.CreateDocument("")
objFaxDoc.CoverpageName = "SupplierQuotation.cov"
objFaxDoc.SenderName = gblDisplayName
When non admin user runs code "Permission Denied" error occurs at the
connect statement. Elevating user privilieges to Power User has no effect.
I know that this is a privilige problem. I just don't know which privileges
to change and on what files/folders etc. Any help would be greatly
appreciated.
the application. User with administrator privilege has no problems running
the application. User without admin privilieges encounters the error
"Permission Denied" as soon as the application attempts the connect to the
fax server. Here is the code
Dim objFaxDoc As New FAXCOMLib.FaxDoc
Dim strOutputFilename As String
Dim strFaxNo As String
Dim iCtr As Integer
objFaxserver.Connect ("TS1")
Set objFaxDoc = objFaxserver.CreateDocument("")
objFaxDoc.CoverpageName = "SupplierQuotation.cov"
objFaxDoc.SenderName = gblDisplayName
When non admin user runs code "Permission Denied" error occurs at the
connect statement. Elevating user privilieges to Power User has no effect.
I know that this is a privilige problem. I just don't know which privileges
to change and on what files/folders etc. Any help would be greatly
appreciated.