Search found 118 matches
- Thu Jul 15 2010
- Forum: Amyuni PDF Converter (PDF Printer Driver)
- Topic: Win7 x64 : API Error 122 ERROR_INSUFFICIENT_BUFFER
- Replies: 9
- Views: 19244
Re: Win7 x64 : API Error 122 ERROR_INSUFFICIENT_BUFFER
The latest code that you sent us is valid and works fine for us. Please make sure that: - "Algol PDF Test" is a valid printer that appears in the printers' folder. Right-click on it, go to preferences and check that you see the About box. - The license key that you are sending to EnablePri...
- Mon Jul 12 2010
- Forum: Amyuni PDF Converter (PDF Printer Driver)
- Topic: Allow Commenting
- Replies: 3
- Views: 8112
Re: Allow Commenting
Commenting with Acrobat Professional is enabled by default. You can disable commenting by adding password security to the PDF document and changing the various security flags.
- Mon Jul 05 2010
- Forum: Power Builder Community
- Topic: Creating Bookmarks
- Replies: 1
- Views: 16738
Re: Creating Bookmarks
The printer DC should be provided by Powerbuilder and not created through CDICreateDC. Whether the code will work or not depends on whether PB gives you access to it internal printer device context, something like:
printerDC = GetPrinterDC( Job )
printerDC = GetPrinterDC( Job )
- Mon Jul 05 2010
- Forum: Amyuni PDF Creator ActiveX (PDF Viewer / Editor)
- Topic: cdintf.dll Locked
- Replies: 1
- Views: 15873
Re: cdintf.dll Locked
We suggest that you run the Process Monitor which is available by Microsoft:
http://technet.microsoft.com/en-us/sysi ... 96645.aspx
This tool might provide a hint on why the DLL is failing to load.
http://technet.microsoft.com/en-us/sysi ... 96645.aspx
This tool might provide a hint on why the DLL is failing to load.
- Mon Jul 05 2010
- Forum: Amyuni PDF Converter (PDF Printer Driver)
- Topic: Win7 x64 : API Error 122 ERROR_INSUFFICIENT_BUFFER
- Replies: 9
- Views: 19244
Re: Win7 x64 : API Error 122 ERROR_INSUFFICIENT_BUFFER
The problem is with line:
di.lpszOutput = "c:\\test.pdf";
when printing from a 32-bit application to 64-bit OS, the file name should be set using the SetDefaultFileName/SetFileNameOptions API provided by Amyuni and the line above set to:
di.lpszOutput = NULL;
di.lpszOutput = "c:\\test.pdf";
when printing from a 32-bit application to 64-bit OS, the file name should be set using the SetDefaultFileName/SetFileNameOptions API provided by Amyuni and the line above set to:
di.lpszOutput = NULL;
- Sun Jul 04 2010
- Forum: Visual FoxPro Community
- Topic: PDF Converter Version Number
- Replies: 1
- Views: 16710
Re: PDF Converter Version Number
The method GetVersionInformation will give you the version number of the API (CDINTF) and the printer driver. This method is documented here: http://www.amyuni.com/WebHelp/Developer_Documentation.htm#index.htm ActiveX: long GetVersionInformation(long* CDIntfMajor, long* CDIntfMinor, long* PrinterDri...
- Sun Jul 04 2010
- Forum: Amyuni PDF Converter (PDF Printer Driver)
- Topic: Xmlite.dll and Snagit Conflict in Version 4.01.1
- Replies: 1
- Views: 6057
Re: Xmlite.dll and Snagit Conflict in Version 4.01.1
Xmllite is optional with PDF Converter. It is only used if you are importing XPS documents using the Open method of CDIntfEx.Document. If you are not using this feature, we suggest that you do not include Xmllite with your installation. If you are using this feature, then you can copy Xmllite to you...
- Sun Jul 04 2010
- Forum: Amyuni PDF Creator ActiveX (PDF Viewer / Editor)
- Topic: How to save a picture to file
- Replies: 1
- Views: 15997
Re: How to save a picture to file
The data that you obtain using the method below are only the scanlines as an uncompressed BMP. You are saving it as a TIF file which is not right. You need to write the BMP header to the file followed by the bitmap data and save the file as .BMP file. We are looking at adding a method to the picture...
- Sun Jul 04 2010
- Forum: Amyuni PDF Creator ActiveX (PDF Viewer / Editor)
- Topic: Messages in Event Log
- Replies: 1
- Views: 15693
Re: Messages in Event Log
These log messages are generated by the spooler and by PDF Converter. They can be disabled by changing the logging policies at the OS level.
- Sun Jul 04 2010
- Forum: Amyuni PDF Converter (PDF Printer Driver)
- Topic: Allow Commenting
- Replies: 3
- Views: 8112
Re: Allow Commenting
Commenting with Adobe Reader and not the full Acrobat is only possible when using Adobe's products. To enable this feature a special Adobe proprietary digital signature is inserted in the PDF. The permissions that you can set using the regular PDF security only apply for the full Acrobat or other PD...
- Sun Jul 04 2010
- Forum: Visual FoxPro Community
- Topic: Cannot create PDF in landscape mode
- Replies: 3
- Views: 24764
Re: Cannot create PDF in landscape mode
VFP saves the printer configuration with the report. It seems that in your case, the configuration for PDF Converter is saved as Portrait. There are 2 fields in the VFP reports that be cleared to force VFP to Forget the configuration. When printing to other printers, are you manually setting the ori...
- Sun Jul 04 2010
- Forum: Amyuni PDF Converter (PDF Printer Driver)
- Topic: Win7 x64 : API Error 122 ERROR_INSUFFICIENT_BUFFER
- Replies: 9
- Views: 19244
Re: Win7 x64 : API Error 122 ERROR_INSUFFICIENT_BUFFER
Please clarify when this issue occurs. Which API call generates the error?
Note that you should install on the NUL: port even if another printer is already using it.
Note that you should install on the NUL: port even if another printer is already using it.
- Fri Jun 11 2010
- Forum: C/C++/C# Community
- Topic: Orientation not setting to Landscape.
- Replies: 1
- Views: 15783
Re: Orientation not setting to Landscape.
We see this question very frequently. The orientation setting in the PDF printer (or any other printer) is only the default setting for that printer. For e.g., when some applications start a new document, they would query the default printer setting and create a Portrait or Landscape document accord...
- Fri Jun 11 2010
- Forum: C/C++/C# Community
- Topic: Amyuni C++ implementation
- Replies: 2
- Views: 16993
Re: Amyuni C++ implementation
This might be an obvious question, but are you sure that you have a form field object named "FieldName" in your document? GetObjectByName doesn't seem to find such a field and is returning an error.
- Wed Mar 31 2010
- Forum: Amyuni PDF Converter (PDF Printer Driver)
- Topic: Assigning ports at install
- Replies: 1
- Views: 5949
Re: Assigning ports at install
You can assign the printer port during installation. When using Install.exe, you can use the "-o portname" command line option to do so. When using PDFDriverInit from the DLL or ActiveX interfaces, you can add the port after the printer name separated by a semi-colon: "myprinter;port&...