+ Reply to Thread
Results 1 to 3 of 3

Cute PDF Automation

Hybrid View

  1. #1
    Registered User
    Join Date
    04-22-2009
    Location
    Boston
    MS-Off Ver
    Excel 2013
    Posts
    68

    Cute PDF Automation

    Hi,

    I am working on CutePDF writer to convert excel file into PDF. I have created Print Button which selects the range on the worksheet and prints it out with the Cute PDF writer. The problem is , it opens a pop up asking me where I should save the file to and also the filename. Is there any way I can automate this i.e. setting input file name and output file name without any user prompt?

    I am giving you the code below.

    Sub PrintIt()
    
    ' Set active Printer to CutePDF
    SetDefaultPrinter ("CutePDF Writer") ' I can include the code for this function upon request
    
    Range("A1:J43").Select
    Selection.PrintOut Copies:=1
    
    End Sub
    This might help as it talks about registry keys.

    http://www.cutepdf.com/solutions/pdfwriter3.asp

    Thanks
    Kapil

  2. #2
    Forum Moderator davesexcel's Avatar
    Join Date
    02-19-2006
    Location
    Regina
    MS-Off Ver
    MS 365
    Posts
    13,525

    Re: Cute PDF Automation

    CutePDF probably does not work with VBA

  3. #3
    Registered User
    Join Date
    04-22-2009
    Location
    Boston
    MS-Off Ver
    Excel 2013
    Posts
    68

    SOLVED: Cute PDF Automation

    Cute PDF does work with VBA. But the problem I am solving for works only with their Custom Edition i.e. bypassing save as dialog box is possible only for their custom edition. But the good news is I have solved the problem with Bullzip PDF Printer. This printer is completely programmable and free as well..

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1