Search found 89 matches

by David
Tue Mar 31 2009
Forum: Amyuni PDF Creator ActiveX (PDF Viewer / Editor)
Topic: Restricting Filling of Form Fields
Replies: 1
Views: 10618

Re: Restricting Filling of Form Fields

[Edited March 23, 2012] This post is now outdated. In order to flatten form fields, we can go through the fields on a page and set the "Annotation" property to 0. This will convert form fields into static objects (static text or frames.) Hello You can “flatten” a PDF by setting the locked ...
by David
Tue Mar 31 2009
Forum: Amyuni PDF Converter (PDF Printer Driver)
Topic: Beginning with PDF Converter
Replies: 1
Views: 5328

Re: Beginning with PDF Converter

Hello Below is a code snippet that demonstrates how to set the outputfilename using the .NET wrapper of cdintf() CDIntf.CDIntfControl PDF = new CDIntf.CDIntfControl (); PDF.DriverInit ( PDFprinter ); PDF.SetDefaultPrinter (); //Set output directory and output filename PDF.DefaultDirectory = Applicat...
by David
Tue Mar 31 2009
Forum: Amyuni PDF Creator ActiveX (PDF Viewer / Editor)
Topic: Mutiple selections in Thumbnail Control
Replies: 1
Views: 9662

Re: Mutiple selections in Thumbnail Control

Hello The property get_SelectedPages() returns a COM array which is inside the VARIANT variable. This is a code snippet that demonstrates how to read a COM array in C++ : { long n, len; HRESULT hr; VARIANT value; hr = m_pdf->get_SelectedPages( &value ); if ( value.vt == (VT_VARIANT | VT_BYREF) )...
by David
Tue Mar 31 2009
Forum: Amyuni PDF Creator ActiveX (PDF Viewer / Editor)
Topic: More on PDF/A
Replies: 4
Views: 14334

Re: More on PDF/A

Hello

A fix for this isssue was applied to version 3.03e and v4.0 of both PDF Creator and PDF Converter products.
Version 4.0 should be available for download by later this evening or early tommorrow morning.

Hope that helps?

David
by David
Tue Mar 31 2009
Forum: Amyuni PDF Creator .NET (PDF Viewer / Editor)
Topic: Trial Version Limitations?
Replies: 1
Views: 10042

Re: Trial Version Limitations?

same issue as http://www.amyuni.com/forum/viewtopic.php?f=14&t=2506

Resolved in latest version available on our website
by David
Tue Mar 31 2009
Forum: C/C++/C# Community
Topic: Trial Version Limitations?
Replies: 2
Views: 10931

Re: Trial Version Limitations?

Hello

This issue is resolved in a new build of the Creator .Net that is now available on our website.

Hope that helps.
David
by David
Tue Mar 31 2009
Forum: Amyuni PDF Converter (PDF Printer Driver)
Topic: lock function
Replies: 1
Views: 4221

Re: lock function

Hello Here is a brief explanation of the locking function. Since the settings of the PDF printer are global in the registry, we need to synchronize access to it when dealing with multithreads printing. The Lock Unlock methods accomplish that by instructing the spooler to get the settings per job, by...
by David
Tue Mar 31 2009
Forum: Amyuni PDF Converter (PDF Printer Driver)
Topic: Function PrintPDFDocument() prints garbage characters
Replies: 5
Views: 9592

Re: Function PrintPDFDocument() prints garbage characters

Hello

The issue that you are encountering is file specific and in order to successfully provide a solution to your issue we would need to look at the PDF files.
You would need to contact our support department with the documents for assistance.

David
by David
Mon Mar 09 2009
Forum: Amyuni PDF Converter (PDF Printer Driver)
Topic: 64 bit version of CdIntf.dll
Replies: 1
Views: 4495

Re: 64 bit version of CdIntf.dll

Hello

The cdintf.dll is a 32bit dll that can be used under 64bit systems.

Currently there is no pure 64bit version of cdintf available. Development on a 64bit version is scheduled to begin in the second half of this year.

Hope that helps.
David
by David
Wed Feb 25 2009
Forum: Amyuni PDF Converter (PDF Printer Driver)
Topic: Can't return Driver back to RGB from CMYK
Replies: 1
Views: 4676

Re: Can't return Driver back to RGB from CMYK

Hello It is recommended to add the color profile only once when installing the printer and yes this requires elevated priviledges. If you need to give the end-user the ability to select between RGB and CMYK then you can create two Amyuni printers, one with a CMYK color profile attached and one with ...
by David
Wed Feb 25 2009
Forum: Amyuni PDF Creator ActiveX (PDF Viewer / Editor)
Topic: Remove document from control
Replies: 6
Views: 16234

Re: Remove document from control

Hello

You can use the Init blank method. The InitBlank method initializes a blank document.

Hope that helps
David
by David
Wed Feb 11 2009
Forum: Amyuni PDF Converter (PDF Printer Driver)
Topic: AMYUNI PDF Converter 3.5 Beta
Replies: 1
Views: 4299

Re: AMYUNI PDF Converter 3.5 Beta

Hello

The new release of the PDF Converter is currently under going testing with our QA team and it is on schedule for release at the end of March.

Hope that helps.

David
by David
Fri Feb 06 2009
Forum: Amyuni PDF Converter (PDF Printer Driver)
Topic: Zero page documents created
Replies: 5
Views: 7705

Re: Zero page documents created

Hello

I suspect the issue you are encountering could be caused by a collision of the documents when printing. To test this can you try putting a sleep/pause of about 5 seconds between each print?

Let me know if you still encounter the issue when you add that?

David
by David
Fri Feb 06 2009
Forum: Amyuni PDF Converter (PDF Printer Driver)
Topic: problem with FontEmbedding in the last fix...
Replies: 4
Views: 6964

Re: problem with FontEmbedding in the last fix...

Hello This sounds like an issue that occurred with the release of the 3.00 driver and was fixed in the 3.01, 3.02 and 3.03 drivers. Upgrading to the latest 3.03 that is available in the customer login section should have resolved the issue that you are encountering. Can you send the sample document ...
by David
Wed Jan 28 2009
Forum: Amyuni PDF Converter (PDF Printer Driver)
Topic: Problem concatenating PDF/A files
Replies: 3
Views: 6714

Re: Problem concatenating PDF/A files

Hello When concatenating documents, the resulting document will not be PDF/A. You will need to use the document object of cdintf to open and save it as PDF/A e.g. Dim doc1 As New CDIntfEx.Document doc1.SetLicenseKey strLicensTo, strActivationCodeDemo 'Open pdf file doc1.Open "D:\temp\myfile.pdf...