Ghostscript Error: -100

PDFCreator v1.5.0 running on Windows Server 2003 R2
Error Code: 4, Desc: Ghostscript Error: ‘-100’!

in spite of the error, the document was created and moved to the correct folder. should this error be ignored?

Hi,

do you have additional GS parameters defined in your options?

regards,

Robin

Follow is the code where i instantiate PDFCreator and set options.

            if (_errorLogging) msg_out("1.Create new PDFCreator ");
            PDFCreator = new clsPDFCreator();
            pErr = new clsPDFCreatorError();
            if (_errorLogging) msg_out("2.Create Event handlers ");
            PDFCreator.eError += new __clsPDFCreator_eErrorEventHandler(_PDFCreator_eError);
            PDFCreator.eReady += new __clsPDFCreator_eReadyEventHandler(_PDFCreator_eReady);
            string parameters = "/NoProcessingAtStartup";
            if (_errorLogging) msg_out("3.Start PDFCreator ");
            if (!PDFCreator.cStart(parameters, true))
            {
                msg_out("Error starting PDFCreator[" + pErr.Number + "]: " + pErr.Description);
                _errorMessage = "Error starting PDFCreator[" + pErr.Number + "]: " + pErr.Description;
                rtCode = false;
            }
            else
            {
                if (_errorLogging) msg_out("4.saving PDFCreator default printer");
                DefaultPrinter = PDFCreator.cDefaultPrinter;
                if (_errorLogging) msg_out("5.setting PDFCreator as default printer");
                PDFCreator.cDefaultPrinter = "PDFCreator";
                if (_errorLogging) msg_out("6.Saving options");
                SaveOpt = PDFCreator.cOptions;

                rtCode = true;
            }