Search found 11 matches
- Tue Mar 28 2017
- Forum: Amyuni PDF Converter (PDF Printer Driver)
- Topic: SPLWOW64 high CPU usage
- Replies: 2
- Views: 8213
Re: SPLWOW64 high CPU usage
Direct printing only slows the printing process.
- Mon Feb 27 2017
- Forum: Amyuni PDF Converter (PDF Printer Driver)
- Topic: SPLWOW64 high CPU usage
- Replies: 2
- Views: 8213
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...
- Tue Sep 15 2015
- Forum: Amyuni PDF Converter (PDF Printer Driver)
- Topic: Why does DriverInit return no handle?
- Replies: 0
- Views: 10852
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?
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?
- Tue Sep 08 2015
- Forum: Amyuni PDF Converter (PDF Printer Driver)
- Topic: Trouble saving to non-local resource
- Replies: 1
- Views: 6098
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...
- Fri Sep 04 2015
- Forum: Amyuni PDF Converter (PDF Printer Driver)
- Topic: Trouble saving to non-local resource
- Replies: 1
- Views: 6098
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...
- Tue Sep 01 2015
- Forum: Amyuni PDF Converter (PDF Printer Driver)
- Topic: What is difference between Concatenate and AppendExisting?
- Replies: 1
- Views: 6933
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...
- Tue Nov 24 2009
- Forum: Power Builder Community
- Topic: Creating Bookmarks
- Replies: 1
- Views: 9260
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...
- Mon Nov 23 2009
- Forum: Power Builder Community
- Topic: Problem with print metod
- Replies: 3
- Views: 12108
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...
- Mon Nov 23 2009
- Forum: Power Builder Community
- Topic: PDF Converter in Windows 2008 server
- Replies: 2
- Views: 11248
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...
- Mon Nov 23 2009
- Forum: Power Builder Community
- Topic: PDF Converter PB11/EAS6/Windows Server 2003
- Replies: 1
- Views: 9000
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
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
- Fri Nov 20 2009
- Forum: Power Builder Community
- Topic: Creating Bookmarks
- Replies: 2
- Views: 13752
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...