J
jcvoon
Hi:
It is possible to send a downloaded pdf file to fax printer using
javascript ?
something like this, but i can't make the following code work.
function FaxDocument()
{
var faxServer = new ActiveXObject("FAXCOMLIB.FaxServer");
var faxDoc = fs.CreateDocument("d:\\test.pdf");
faxServer.Connect("LocalFaxServer");
faxDoc.FaxNumber="18008737822";
faxDoc.Filename="d:\\test.pdf";
faxDoc.Send();
faxServer.Disconnect();
alert("Done");
}
If not possible is there other way to achieve this ?
Please Help
JCVoon
It is possible to send a downloaded pdf file to fax printer using
javascript ?
something like this, but i can't make the following code work.
function FaxDocument()
{
var faxServer = new ActiveXObject("FAXCOMLIB.FaxServer");
var faxDoc = fs.CreateDocument("d:\\test.pdf");
faxServer.Connect("LocalFaxServer");
faxDoc.FaxNumber="18008737822";
faxDoc.Filename="d:\\test.pdf";
faxDoc.Send();
faxServer.Disconnect();
alert("Done");
}
If not possible is there other way to achieve this ?
Please Help
JCVoon