Permission Denied error Access Project

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top