Search found 2 matches

by tatiana
Mon Jun 23 2008
Forum: Amyuni PDF Converter (PDF Printer Driver)
Topic: set DefaultFileName
Replies: 2
Views: 5172

Re: set DefaultFileName

Well... I found the answer - I should have called DriverInit first; this code works fine: Hello, I am initializing the PDF Converter private void Initialize() { // if already called then exit if (initialized) return; // If not called than initialize it cdiNet.DriverInit(Declarations.PrinterName); //...
by tatiana
Mon Jun 23 2008
Forum: Amyuni PDF Converter (PDF Printer Driver)
Topic: set DefaultFileName
Replies: 2
Views: 5172

set DefaultFileName

Hello, I am initializing the PDF Converter private void Initialize() { // if already called then exit if (initialized) return; // Set FileNameOptions and output file name. cdiNet.FileNameOptions = Declarations.NoPrompt + Declarations.UseFileName; cdiNet.DefaultFileName = "C:\\Work\\PDFtest.pdf&...