Acces Denied when calling FaxDocument Submit

  • Thread starter Thread starter Neil
  • Start date Start date
N

Neil

Hello all:

I have a Windows 2003 SBS server. My client is Windows XP.

I wrote this VB code in Access to send faxes using the FAXCOMEX
library:

Dim FS As New FAXCOMEXLib.FaxServer
Dim FD As New FAXCOMEXLib.FaxDocument

FS.Connect "MyServer"
FD.Body = "C:\Temp\test.rtf"

FD.CoverPageType = fcptNONE

FD.DocumentName = "Test"
FD.Priority = fptHIGH

FD.Recipients.Add (faxNumber)

FD.Submit("MyServer")

I am getting an Access Denied error on the FD.Submit line.

I have the fax printer installed on my machine and I can print anything
I want to it and it faxes fine. When I installed the fax printer, I
provided the user name and password I set up for it and I told it to
remember the password.

Any ideas?

Thanks
Neil
 
Do you have permissions to send high priority faxes? Try sending a normal
priority fax and check if it works.
--
---

Renu Bhattar [MSFT]

Microsoft Printing, Imaging and Faxing
This posting isprovided "AS IS" with no warranties and confers no rights.
Please do not send mail directly to this alias. This alias is for newsgroup
purposes only.
 
Back
Top