"Output File Name" dialog

If you are a VB developer and have questions about using our products from VB, here is the place to post them.
Post Reply
paulera
Posts: 5
Joined: Thu Jan 11 2007
Location: Brazil

"Output File Name" dialog

Post by paulera »

I am using this code to print a PDF:

Code: Select all

Dim pdfprinter As CDIntf.CDIntf
Set pdfprinter = New CDIntf.CDIntf
pdfprinter.DriverInit ("Amyuni PDF Converter")
pdfprinter.DefaultDirectory = "c:\"
pdfprinter.DefaultFileName = "c:\teste.pdf"
pdfprinter.FileNameOptions = 1 + 2
pdfprinter.SetDefaultPrinter
pdfprinter.SetDefaultConfig

Call PrintDocument
The "Output File Name" dialog apears, in blank, and i would like to prevent it.

Any solution?

Thanks.
Joan
Amyuni Team
Posts: 2799
Joined: Wed Sep 11 2002
Contact:

Post by Joan »

Hello,

If you get the Developer version of the PDF Converter, you will not get any dialog box, because this version doesn't have a save as dialog box.

Using your codde however you shouldn't receive the dialog box even if you are using the End User version of the Converter.

Your code is right, this issue needs to be investigated more, I suggest that you contact support@amyuni.com
paulera
Posts: 5
Joined: Thu Jan 11 2007
Location: Brazil

Post by paulera »

The dialog I sad is not a save as dialog box, but just a small window with a text box to write the file path, an OK and a Cancel button. I want that this window don’t appear to my users. This dialog is not good because it doesn’t remember the file path and don’t allow the user to navigate trough folders to find the file, so he has to write the whole file path every time.

And where can I see if my driver has the developer version?

( a copy of this reply have been sent to the support e-mail )

Thanks.
Joan
Amyuni Team
Posts: 2799
Joined: Wed Sep 11 2002
Contact:

Post by Joan »

Hello,

I believe you received a reply to the dialog box question from support.

To know which version of the PDF Printer you have you can right click on the printer and choose printer preferences.

Hope this helps.
Post Reply