ConnectedSubmit - Operation Failed

  • Thread starter Thread starter JFrank Brock
  • Start date Start date
J

JFrank Brock

I am writing a vba script to send out a fax. btw, faxing is working fine
with the fax console and send a fax built in XP programs.

I am using access 2002 on XP and using the Fax Service Extended COM Type
Lib. the Fax server is on the local machine running the vba app.

i copied the VB code directly from the MSDN sample code on sending a fax.

when i run the faxdoc.connectedSubmit(faxserver) method, i get an error that
the operation failed with a hex error code of 80070483.

i can find nothing on this anywhere (in docs, msdn, KB or NG's).

any ideas?
 
0x80070483 - the 7 of the first half of the number is FACILITY_WIN32. This
means this is an error generated in Win32 API. The second half is always the
actual error code. The error code 0483 in decimal is 1155.
Typing 'net helpmsg 1155' on command line gives you the following error
message
No application is associated with the specified file for this operation.

So most likely there is no application associated with the extension of the
file you are trying to fax.

--
Raghavendra R
Microsoft Printing, Imaging and Fax Team
This posting is provided "AS IS" with no warranties, and confers no rights.
Please do not send email directly to this alias. This alias is for newsgroup
purposes only.'
 
Back
Top