Faxing

  • Thread starter Thread starter Mircea Pleteriu
  • Start date Start date
M

Mircea Pleteriu

Does somebody know why the foolowing code
throws an System.Runtime.InteropServices.COMException exception with the message of 'Unspecified error'?

FaxServerClass fxsvr = new FaxServerClass();

fxsvr.Connect(""); // null for local fax server otherwise a computername


I use the FAXCOMLib library under Windows 2000.

Thanks,
Mircea
 
Try specifying af computer name or us
object o = null
fxsvr.Connect(o)

Regards, Jakob.
 
Back
Top