Search found 121 matches

by Devteam
Tue Jul 26 2011
Forum: Amyuni PDF Creator .NET (PDF Viewer / Editor)
Topic: ImportFromRtf Function problem
Replies: 1
Views: 9862

Re: ImportFromRtf Function problem

This method is now obsolete and was removed from our documentation. The RTF import module was sold as a separate module that required additional licensing but development around this module stopped a while ago because it didn't find any success with our customers. Also there are some obscure and und...
by Devteam
Tue Jul 26 2011
Forum: Amyuni PDF Converter (PDF Printer Driver)
Topic: Amyuni 4.0.08 printer only has about tab on printer preferen
Replies: 1
Views: 4636

Re: Amyuni 4.0.08 printer only has about tab on printer preferen

The developer version of Amyuni PDF Converter only displays a single About tab because all the settings are done within the calling application. This has been the case for a few years now and well before version 3 was released. Either you had special licensing that allowed you to display other tabs ...
by Devteam
Sat Jul 16 2011
Forum: Amyuni PDF Converter (PDF Printer Driver)
Topic: Monochrome PDF
Replies: 1
Views: 4757

Re: Monochrome PDF

We haven't seen anything similar so it is difficult to determine why this is happening. Two things might be happening: - The user has a monochrome printer set as the default printer and when Powerbuilder is switching to the PDF printer, the print settings are still monochrome. One solution would be ...
by Devteam
Thu Jun 16 2011
Forum: Amyuni PDF Converter (PDF Printer Driver)
Topic: Multiple cdintf.dll's
Replies: 3
Views: 8869

Re: Multiple cdintf.dll's

Please provide us with the code that you are using to load the library and initialize the ActiveX component. We don't understand why this is not working for you. Also if you can run your application from a debugger, on the call to LoadLibrary you should be able to see exactly where is CDINTF loaded ...
by Devteam
Tue Jun 07 2011
Forum: Amyuni PDF Converter (PDF Printer Driver)
Topic: Properties About dialog appearing
Replies: 1
Views: 4807

Re: Properties About dialog appearing

We have never seen a case where the Properties dialog-box would appear on its own during a regular print process. For this dialog to appear, the user must click on Printer Properties or the application must call the DocumentProperties Windows API with the Prompt flag set. Check your application to s...
by Devteam
Mon Jun 06 2011
Forum: Amyuni PDF Converter (PDF Printer Driver)
Topic: Multiple cdintf.dll's
Replies: 3
Views: 8869

Re: Multiple cdintf.dll's

An easy solution is to keep your own copy of CDINTF.DLL in your application's folder then call LoadLibrary( "my_application_path\\cdintf.dll" ) at the initialization of your application. This will force loading the right version when the ActiveX object is instantiated later on in your code.
by Devteam
Sat Jun 04 2011
Forum: Amyuni PDF Converter (PDF Printer Driver)
Topic: Amyuni 4.5.0.7 installation error 1802
Replies: 1
Views: 7340

Re: Amyuni 4.5.0.7 installation error 1802

The most common cause for error 1802 is that you still have a print job in the printer's queue. In this case, the printer cannot be re-installed until the remaining print job is deleted. If you are not able to delete the job, you can either restart the priknt spooler or kill the splwow64.exe process.
by Devteam
Tue May 24 2011
Forum: Amyuni PDF Converter (PDF Printer Driver)
Topic: Amyuni and SMTP error codes
Replies: 8
Views: 15472

Re: Amyuni and SMTP error codes

Sorry about that. I just updated this post to include the description of error -22: ERR_NOTAUTHENTICATED. The server is requesting authentication, you either did not supply any username/password or the information that you supplied was not recognized by the server.

Robert
by Devteam
Mon May 16 2011
Forum: Amyuni PDF Converter (PDF Printer Driver)
Topic: Setting a different user password for each pdf
Replies: 2
Views: 6288

Re: Setting a different user password for each pdf

You are not specifying from which application the invoices are being printed. If you have full control over the application, mainly creating your own Device context (DC), you do not need to call SetDefaultConfigEx, instead use the CDICreateDC supplied by our SDK after changing the passwords. If you ...
by Devteam
Mon May 16 2011
Forum: Amyuni PDF Converter (PDF Printer Driver)
Topic: Amyuni and SMTP error codes
Replies: 8
Views: 15472

Re: Amyuni and SMTP error codes

Error -15 is described in the list below as "You get ERR_RECIPIENT -15 when the recipient email address is not working on the server. Like recipient not found, email address wrong or mailbox deleted..."
by Devteam
Tue May 10 2011
Forum: C/C++/C# Community
Topic: Move the position of a text annotation
Replies: 6
Views: 16568

Re: Move the position of a text annotation

At what time are you switching the control back into run mode? If you keep the control in Annotation mode, the user will be able to move or resize the annotations unless your MouseDown event handling code is preventing the control from receiving these events. When the user clicks on the control, how...
by Devteam
Tue May 10 2011
Forum: C/C++/C# Community
Topic: Move the position of a text annotation
Replies: 6
Views: 16568

Re: Move the position of a text annotation

If the recipients of the document have the Amyuni PDF Creator, Acrobat Standard or Professional or any other PDF editor, they will be able to edit or move the annotations. If the recipients only have Acrobat Reader then no changes to the annotations are allowed. Acrobat Reader X has some annotation ...
by Devteam
Mon May 09 2011
Forum: C/C++/C# Community
Topic: Move the position of a text annotation
Replies: 6
Views: 16568

Re: Move the position of a text annotation

You should switch to annotation mode before allowing the user to insert the text objects. When you switch to annotation mode, the objects will be created as annotations rather than static text objects and the user will be able to move these annotations. If you are creating the objects using the Crea...
by Devteam
Fri May 06 2011
Forum: Amyuni PDF Converter (PDF Printer Driver)
Topic: AccessViolationException:attempt to read/write protected mem
Replies: 1
Views: 5780

Re: AccessViolationException:attempt to read/write protected mem

This issue might be font related. We have fixed an issue with specific fonts crashing the printer driver. We suggest that you use the latest 4.5.0.7 which is free for all users of 4.5.0.0.
by Devteam
Fri Apr 29 2011
Forum: Amyuni PDF Converter (PDF Printer Driver)
Topic: SendSmtpMailEx does not send with attachment
Replies: 3
Views: 7323

Re: SendSmtpMailEx does not send with attachment

There is an extra space character here: "teammate@secondcompany. com; team mate2@mycompany.com" This unfortunately creates an issue when parsing the email addresses and attachments. We are looking at fixing this issue, in the meantime you can remove the space character in order to send out...