Search found 11 matches

by eric.glenn
Tue Mar 28 2017
Forum: Amyuni PDF Converter (PDF Printer Driver)
Topic: SPLWOW64 high CPU usage
Replies: 2
Views: 9230

Re: SPLWOW64 high CPU usage

Direct printing only slows the printing process.
by eric.glenn
Mon Feb 27 2017
Forum: Amyuni PDF Converter (PDF Printer Driver)
Topic: SPLWOW64 high CPU usage
Replies: 2
Views: 9230

SPLWOW64 high CPU usage

I have a 32 bit application using Amyuni PDF Converter 5.5.0. I notice that when printing hundreds of PDF files for several hours, CPU usage for SPLWOW64 climbs to the point where the computer is no longer usable. How does Amyuni PDF Converter interact with SPLWOW64? What are recommended settings or...
by eric.glenn
Tue Sep 15 2015
Forum: Amyuni PDF Converter (PDF Printer Driver)
Topic: Why does DriverInit return no handle?
Replies: 0
Views: 13631

Why does DriverInit return no handle?

I am using PowerBuilder to print thousands of PDF files.

To speed things up, I have several instances all printing to the same printer using LOCK and UNLOCK.
Works great!

Periodically, DriverInit returns 0 instead of a valid handle.

Why?
by eric.glenn
Tue Sep 08 2015
Forum: Amyuni PDF Converter (PDF Printer Driver)
Topic: Trouble saving to non-local resource
Replies: 1
Views: 6880

Re: Trouble saving to non-local resource

Called sales support and the awesome guy who answered the phone helped me out. The issue is that you need to pass the entire file and file path to SetDocFileProps. I have revised my example. PDFPrinter = DriverInit("Amyuni Eval Printer") ls_output_file = "some.pdf" ls_output_fold...
by eric.glenn
Fri Sep 04 2015
Forum: Amyuni PDF Converter (PDF Printer Driver)
Topic: Trouble saving to non-local resource
Replies: 1
Views: 6880

Trouble saving to non-local resource

If I specify an output file which isn't a local resource, I see the print job appear in the spooler but no output file appears. If I specify a local drive, everything works fine. This fails: PDFPrinter = DriverInit("Amyuni Eval Printer") ls_output_file = "some.pdf" ls_output_fold...
by eric.glenn
Tue Sep 01 2015
Forum: Amyuni PDF Converter (PDF Printer Driver)
Topic: What is difference between Concatenate and AppendExisting?
Replies: 1
Views: 7766

What is difference between Concatenate and AppendExisting?

For method SetFileNameOptions what is the difference between Concatenate and AppendExisting? https://www.amyuni.com/WebHelp/Amyuni_Document_Converter/Printer_Configuration/Properties/FileNameOptions,_FileNameOptionsEx.htm Concatenate 4 Concatenate with existing file instead of overwriting. This is u...
by eric.glenn
Tue Nov 24 2009
Forum: Power Builder Community
Topic: Creating Bookmarks
Replies: 1
Views: 10190

Creating Bookmarks

External Function Declarations // HDC CDICreateDC( HANDLE hPrinter ); Function uLong CDICreateDC (Long hPrinter ) Library "cdintf300.dll" alias for "CDICreateDC;Ansi" // long SetBookmark( HANDLE hDC, long lParent, LPCSTR szTitle ); Function Long SetBookmark(uLong hDC, long lPare...
by eric.glenn
Mon Nov 23 2009
Forum: Power Builder Community
Topic: Problem with print metod
Replies: 3
Views: 13171

Re: Problem with print metod

It is possible to trap errors by using TRY CATCH (see PowerBuilder documentation appropriate for your PowerBuilder version) or using the systemerror event of the application object Example code for systemerror event /* Error property Datatype Description ClassDefinition PowerObject An object of type...
by eric.glenn
Mon Nov 23 2009
Forum: Power Builder Community
Topic: PDF Converter in Windows 2008 server
Replies: 2
Views: 12241

Re: PDF Converter in Windows 2008 server

EnablePrinter returns a long value. The return value is False if the printer handle is invalid, True otherwise. The value returned by the print function is where you can find the real problem. Here is an description of the negative return codes -20 Name of licensee could not be read (License registr...
by eric.glenn
Mon Nov 23 2009
Forum: Power Builder Community
Topic: PDF Converter PB11/EAS6/Windows Server 2003
Replies: 1
Views: 9813

Re: PDF Converter PB11/EAS6/Windows Server 2003

I don't remember where I got this meaning of this error message, but,

Error -41
means that you are trying to activate a new version of the PDF Converter with an activation key of the previous version.

Hope this helps
by eric.glenn
Fri Nov 20 2009
Forum: Power Builder Community
Topic: Creating Bookmarks
Replies: 2
Views: 16265

Re: Creating Bookmarks

External Function Declarations // HDC CDICreateDC( HANDLE hPrinter ); Function uLong CDICreateDC (Long hPrinter ) Library "cdintf300.dll" alias for "CDICreateDC;Ansi" // long SetBookmark( HANDLE hDC, long lParent, LPCSTR szTitle ); Function Long SetBookmark(uLong hDC, long lPare...