Search found 555 matches

by Jose
Tue Mar 20 2018
Forum: Amyuni PDF Converter (PDF Printer Driver)
Topic: Alpha Channel on GDI Regions
Replies: 2
Views: 7241

Re: Alpha Channel on GDI Regions

Hi,

This unfortunately is a fairly complex feature to add and we need to investigate the possibility of adding this to our soon to be released version v6.0 of the PDF Converter.

I will post updated information as it becomes available.

Thanks
by Jose
Fri Mar 02 2018
Forum: Visual FoxPro Community
Topic: Pdf with hyperlink
Replies: 1
Views: 21138

Re: Pdf with hyperlink

Hi, I suggest that you look at the SetHyperlinkInternal() method. This method, which is exposed from the document object of CDINTF.dll, creates a hyperlink to a specific location in the same document. You can find more information about this method from our online documentation (link below) https://...
by Jose
Thu Feb 15 2018
Forum: Amyuni PDF Converter (PDF Printer Driver)
Topic: GetVersionInformation v.5.5.2.1 PDF Converter
Replies: 1
Views: 7240

Re: GetVersionInformation v.5.5.2.1 PDF Converter

Hi Stuart, The code snippet below illustrates how to retrieve the DLL version number of the different CDINTF.DLL. Can you please test this on your end? void GetVersionTest() { // Handle to DLL HINSTANCE hDLL = LoadLibrary(_T("cdintf.dll")); if (hDLL != NULL) { DriverInit = (lpfnDriverInitP...
by Jose
Tue Oct 10 2017
Forum: Amyuni PDF Converter (PDF Printer Driver)
Topic: Pdf with hyperlink
Replies: 1
Views: 6907

Re: Pdf with hyperlink

Hello, When generating a PDF document the PDF Converter has the ability to automatically convert hyperlinks if it encounters text that starts with one the prefixes below: 1- www. 2- http:// 3- file:// 4- mailto: 5- https:// 6- ftp:// However all of the hyperlinks embedded in the HTML file (ex: image...
by Jose
Fri Sep 29 2017
Forum: Technical Notes
Topic: What versions of Amyuni are still supported?
Replies: 1
Views: 19134

Re: What versions of Amyuni are still supported?

Hello, As of the end of September 2017: We provide support for one version back of whatever is the current version. That means that we support version v5.0 and v5.5 of all of our products until our next major release (v6.0) Will be available. When version v6.0 is released, support for v5.0 will end....
by Jose
Fri Sep 29 2017
Forum: Amyuni PDF Converter (PDF Printer Driver)
Topic: Amyuni PDF Converter 5.5.2.1 not working on Win Server 2012
Replies: 1
Views: 10065

Re: Amyuni PDF Converter 5.5.2.1 not working on Win Server 2012

Hello, You are encountering an “error code -60” because the sever option has not been enabled in the license codes you are using. With the release of version v5.0 a few years ago we modified our licensing slightly. The application license is now associated with both the Application name and the targ...
by Jose
Fri Sep 29 2017
Forum: Amyuni PDF Converter (PDF Printer Driver)
Topic: Cannot download the PDF Converter Application Server Edition
Replies: 1
Views: 6627

Re: Cannot download the PDF Converter Application Server Edition

Hello,

This situation no longer exists and the link is now valid.

Thanks
by Jose
Wed May 24 2017
Forum: Amyuni PDF Creator ActiveX (PDF Viewer / Editor)
Topic: Qt and PDFCreator as library
Replies: 8
Views: 14750

Re: Qt and PDFCreator as library

Hello, In the examples above we have been creating a PDF Creator object in memory and accessing this object’s properties and methods. Example: pdf.CreateInstance (__uuidof(PDFCreactiveX)); To be able to view and interact with a PDF document in a PDF Creator object hosted in your Qt form, you need to...
by Jose
Tue May 23 2017
Forum: Amyuni PDF Creator ActiveX (PDF Viewer / Editor)
Topic: Template text on every page
Replies: 1
Views: 6120

Re: Template text on every page

Hello,

The presents of the evaluation watermark is controlled by the licensing keys. These watermarks are removed when non-evaluation keys are used in the SetLicenseKey() method.

Thanks
by Jose
Fri May 12 2017
Forum: Amyuni PDF Creator ActiveX (PDF Viewer / Editor)
Topic: Qt and PDFCreator as library
Replies: 8
Views: 14750

Re: Qt and PDFCreator as library

Hello, Can you also add the CoInitialize(0) function? You need to initializes the COM library //initialize com object CoInitialize(0); IPDFCreactiveXPtr pdf; pdf.CreateInstance (__uuidof(PDFCreactiveX)); pdf->SetLicenseKey (_bstr_t("A....uni"),_bstr_t("07EFCDA.....0874F198")); lo...
by Jose
Thu May 11 2017
Forum: Amyuni PDF Creator ActiveX (PDF Viewer / Editor)
Topic: Qt and PDFCreator as library
Replies: 8
Views: 14750

Re: Qt and PDFCreator as library

Hello, To debug this situation further I have downloaded the Qt Creator Community edition and believe I am able to add access the PDF Creator COM object. I suspect that there may be more efficient ways to add a COM object to Qt but I will leave that up to you. Please follow the steps below: You need...
by Jose
Wed May 10 2017
Forum: Amyuni PDF Creator ActiveX (PDF Viewer / Editor)
Topic: Qt and PDFCreator as library
Replies: 8
Views: 14750

Re: Qt and PDFCreator as library

Hi Tony, Here some additional information. #import "PDFCreactiveX.dll" raw_interfaces_only raw_dispinterfaces rename("GetObject", "PDFCreactiveX_GetObject") rename("TextOut", "PDFCreactiveX_TextOut") rename("GetCharWidth", "PDFCreactiv...
by Jose
Wed May 10 2017
Forum: Amyuni PDF Creator ActiveX (PDF Viewer / Editor)
Topic: Qt and PDFCreator as library
Replies: 8
Views: 14750

Re: Qt and PDFCreator as library

Hi Tony, Sorry but I am not very familiar with the Qt Creator. The link below points an example that shows how to use the PDFCreator control as a library in an MFC console application. The file Win32ConsoleApp.cpp is the only file (in addition to stdafx.cpp) that is produced by the Visual Studio wiz...
by Jose
Mon Apr 03 2017
Forum: Amyuni PDF Converter (PDF Printer Driver)
Topic: SPLWOW64 high CPU usage
Replies: 2
Views: 9249

Re: SPLWOW64 high CPU usage

Hello,

The splwow64.exe is the printing subsystem for 32-bit applications. The splwow64.exe process gets executed each time a 32-bit application tries printing to a printer attached to the system.

One way to not have windows use splwow64.exe is to build a 64bit version of your application.

Thanks
by Jose
Wed Mar 22 2017
Forum: Amyuni PDF Converter (PDF Printer Driver)
Topic: PDF converter 4.5 Error while saving the file
Replies: 3
Views: 8437

Re: PDF converter 4.5 Error while saving the file

Hi,

Have you tried saving the PDF document to some other directory?

Thanks