Now I got another problem and I think its to do with licance
If I print any pdf fil by normaly opening the "Amyuni PDF Converter 3.02"
PDFCreactiveDoc.exe the resault is fine the paper comes out as it should.
now my first issue printing a pdf via a activeX object I solved like this
Code: Select all
static void BOMTest009(args a)
{
COM PDFDoc = new COM('PDFCreactiveX.PDFCreactiveX');
str LicenseName = "xxxx";
str LicenseKey = "xxxx";
;
PDFDoc.Open("q:\\Faktura DVS - F1472943.pdf","");
PDFDoc.SetLicenseKey(LicenseName,LicenseKey);
PDFDoc.Print('',false);
}
"Amyuni PDF Creator, Version 3.00 - Copyright(c) 2001-2007 - Amyuni Technologies
can you give any hint on why this comes cause I got a licance to the program and it works fine within the PDFCreactiveDoc.exe
when I from printers&faxes try and print out a test page from the "Amyuni PDF Converter" printer I get this message "Printer not activated, error code -20" not sure if this has anything to do with it.
(note: in the code example above the licanceName and Key are xxxx in this example for obvious reasons
