+ Reply to Thread
Results 1 to 12 of 12

Automation of creating PDF files

  1. #1
    Registered User
    Join Date
    06-23-2009
    Location
    Columbus, Ohio
    MS-Off Ver
    Excel 2003
    Posts
    7

    Automation of creating PDF files

    We are trying to automate the creation of PDF files for each sheet in an Excel file,a nd keep getting error messages. Can someone help? It produces the post script file, but it has no data nd then doesn't create a PDf file at all. We have Excel 2003, and have the below code setup.

    Please Login or Register  to view this content.
    We also have a class module setup called cAcroDist with the below code.

    Please Login or Register  to view this content.
    Last edited by mkern21; 06-25-2009 at 09:10 AM. Reason: edit code

  2. #2
    Forum Expert royUK's Avatar
    Join Date
    11-18-2003
    Location
    Derbyshire,UK
    MS-Off Ver
    Xp; 2007; 2010
    Posts
    26,200

    Re: Automation of creating PDF files

    Your post does not comply with Rule 3 of our Forum RULES. Use code tags around code. Posting code without them makes your code hard to read and difficult to be copied for testing. Highlight your code and click the # at the top of your post window. For more information about these and other tags, found here
    Hope that helps.

    RoyUK
    --------
    For Excel Tips & Solutions, free examples and tutorials why not check out my web site

    Free DataBaseForm example

  3. #3
    Forum Expert royUK's Avatar
    Join Date
    11-18-2003
    Location
    Derbyshire,UK
    MS-Off Ver
    Xp; 2007; 2010
    Posts
    26,200

    Re: Automation of creating PDF files

    You do have Acrobat and not just the reader?

  4. #4
    Registered User
    Join Date
    06-23-2009
    Location
    Columbus, Ohio
    MS-Off Ver
    Excel 2003
    Posts
    7

    Re: Automation of creating PDF files

    Sorry about the formatting of the code don't use these very often.

    But, yes i do have the full version of acrobat.

  5. #5
    Forum Expert royUK's Avatar
    Join Date
    11-18-2003
    Location
    Derbyshire,UK
    MS-Off Ver
    Xp; 2007; 2010
    Posts
    26,200

    Re: Automation of creating PDF files

    You need to add a Class Module & name it - cACroDist. Paste this code

    Please Login or Register  to view this content.
    In a Standard Module:



    Please Login or Register  to view this content.
    Finally you need to set a Reference to Acrobat Distiller in the VB Editor

    Tools -. References

  6. #6
    Registered User
    Join Date
    06-23-2009
    Location
    Columbus, Ohio
    MS-Off Ver
    Excel 2003
    Posts
    7

    Re: Automation of creating PDF files

    That is what I have, I believe...as you can see above I did include the cAcroDist class module, and I believe my code is the same except for the error handling (which i didn't include), and the dim statements, which i do have I just didn't copy them above. This is exactly what I have entirely in my code.


    Please Login or Register  to view this content.
    And My CAcroDist class module is as follows

    Please Login or Register  to view this content.
    I did already have the Acrobat Distiller reference selected, but it still will not work....I just re-ran it and it looks like it actually created the PDF file in my y:\ drive (which is our personal drive) instead of the location specified in the OutPutPDFFileName in the code. What would cause this? is it a default setting perhaps on my Acrobat?
    Last edited by mkern21; 06-25-2009 at 08:07 AM. Reason: code tags not working

  7. #7
    Forum Expert royUK's Avatar
    Join Date
    11-18-2003
    Location
    Derbyshire,UK
    MS-Off Ver
    Xp; 2007; 2010
    Posts
    26,200

    Re: Automation of creating PDF files

    Please use Code tags.

    Have you tried my code, it certainly works for me.

    You must make the Reference to Acrobat Distiller as i said in my previous post

  8. #8
    Registered User
    Join Date
    06-23-2009
    Location
    Columbus, Ohio
    MS-Off Ver
    Excel 2003
    Posts
    7

    Re: Automation of creating PDF files

    I did set the reference to Acrobat Distiller, and it appears different people are getting different results. I will try your exact code in another file and see if I get a different result, but it looks the same.

    When I run it it creates a pdf file in my y:\drive when it does executes the printout line of code and then does nothing on the call apdist....function, and my co-worker gets the following error on the call apdist line

    Method 'FiletoPDF' of object 'IPDFDistiller' failed

  9. #9
    Registered User
    Join Date
    06-23-2009
    Location
    Columbus, Ohio
    MS-Off Ver
    Excel 2003
    Posts
    7

    Re: Automation of creating PDF files

    ok your code did work so it must just be the way we have it setup....can you see anything in our code that would cause the issue?

  10. #10
    Forum Expert royUK's Avatar
    Join Date
    11-18-2003
    Location
    Derbyshire,UK
    MS-Off Ver
    Xp; 2007; 2010
    Posts
    26,200

    Re: Automation of creating PDF files

    maybe the printer name is incorrect in your code.

  11. #11
    Registered User
    Join Date
    06-23-2009
    Location
    Columbus, Ohio
    MS-Off Ver
    Excel 2003
    Posts
    7

    Re: Automation of creating PDF files

    I got it to work i think there was something wrong in our printout statement or something, because I just copied what you had and it worked finally!! Thanks!!

  12. #12
    Registered User
    Join Date
    01-07-2011
    Location
    London
    MS-Off Ver
    Excel 2007
    Posts
    2

    Re: Automation of creating PDF files

    Just found this code and before I continue thanks for a great bit of code, we are using the code but have discovered a problem which we can't get our heads around! I am using Excel 2007 and have used the attached code, my problem is that when I run it the code goes into my excel drop down box, selects the first name then pdf's the data, however when it loops around to the next item on the list it generates the .ps file but no pdf is created, it then moves on to the 3rd drop down name and correctly pdf's it!! Really odd as it basically pdf's every other name in the drop down but annoyingly it select every item but only generates every other one!

    Any help would be gugely appreciated as it is taking twice as long to run;


    Sub ChangeMASelection()
    Dim Rng As Range
    Dim c As Range
    Dim InputPSFileName As String
    Dim OutPutPDFFileName As String
    Dim sJobOptions As String
    Dim appDist As cACroDist
    Dim StrAgent, StrPath As String
    ' Change reference to cell containing validation to suit
    With Range("DropDownList")
    Set Rng = Range(Mid(.Validation.Formula1, 2, 255))
    For Each c In Rng
    .Value = c.Value
    StrAgent = Range("DropDownList") 'get the managing agent name
    StrPath = ThisWorkbook.Path

    Set appDist = New cACroDist
    Sheets("Charts").Select
    InputPSFileName = "\\lnscntfs02\fpddata\Claims\Analysis Services Regular Report Production Files\ECF\ECF_Dashboard_Final.ps"
    OutPutPDFFileName = StrPath & "\" & StrAgent & "_ECF Dashboard Report.pdf"
    'OutPutPDFFileName = "\\lnscntfs02\fpddata\Claims\Analysis Services Regular Report Outputs\ECF_CTP Dashboards\2011 ECF\2011 02\ECF Dashboards\" & StrAgent & "_ECF Dashboard Report.pdf"
    Application.ActivePrinter = "Adobe PDF on Ne02:"
    ActiveWindow.SelectedSheets.PrintOut Copies:=1, ActivePrinter:= _
    "Adobe PDF on Ne02:", PrintToFile:=True, Collate:=True, PrToFileName:="\\lnscntfs02\fpddata\Claims\Analysis Services Regular Report Production Files\ECF\ECF_Dashboard_Final.ps"
    Application.Wait Now + TimeValue("00:00:55")
    Call appDist.odist.FileToPDF(InputPSFileName, OutPutPDFFileName, sJobOptions)
    On Error Resume Next
    ' Application.Wait Now + TimeValue("00:00:05")
    Kill InputPSFileName

    Next c
    End With
    End Sub

+ 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