PDFCreator 0.9.5 - PHP/COM
Hello,
I've a problem with PHP and COM, here is my code :
$PDFCreator = new COM("PDFCreator.clsPDFCreator");
$PDFCreator->cStart("");
$PDFCreatorOptions = new COM("PDFCreator.clsPDFCreator");
$PDFCreatorOptions = $PDFCreator->{cOptions};
$PDFCreatorOptions->{UseAutosave} = 1;
$PDFCreatorOptions->{UseAutosaveDirectory} = 1;
$PDFCreatorOptions->{AutosaveFormat} = 0;
$DefaultPrinter = $PDFCreator->cDefaultPrinter();
$PDFCreator->cDefaultPrinter = "PDFCreator";
$PDFCreator->cClearCache();
$PDFCreatorOptions->{AutosaveFilename} = "";
And to save all options :
$PDFCreator->{cOptions} = $PDFCreatorOptions;
but this line return the error :
"Warning: main(): PropPut() failed: Membre introuvable"
Could someone help me please ?
Thanks.