fax automation error

D

Daniel

Hi,

I'm using faxdocument (fxcomx.dll) to send faxes to customers.
I have an SBS 2003 server that doe's the faxing services. my clients are
running access xp runtime and use this server to send faxes.
lately - we have an error we cant fix:
"Class does not support Automation or does not support expected interface"

this happens when we use the .send method:

Dim fx As New FaxDocument

With fx
.DocumentName = "Fax message"
.Recipients.Add recipientFaxNo, recipientName
.Body = faxFileName
.Subject = "faxSubject"
.Priority = fptNORMAL
.Sender.Name = "senderName"
.Submit "AServer"
End With

some stations get this error, and some don't... :-(
and we just cant tell the difference. some stations are clean installations
and have this error to.

ideas anyone ?
 
Top