Programming to "Print" using CUTE PDF!

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • John Baker

    #16
    Re: Programming to "Print&quo t; using CUTE PDF!

    Thansk to you all.

    This sounds like a great solution.

    Could someone give me a sample of the code that i would uise to edit the .ini file? I have
    never done much in Code in Access, concentarting mosty on macros.

    Thanks a lot

    John

    "John Winterbottom" <assaynet@hotma il.com> wrote:
    [color=blue]
    >"John Baker" <Baker.JH@Veriz on.net> wrote in message
    >news:de5390h3k 2ipa7e8o5rjgtl7 6lb2359ve1@4ax. com...[color=green]
    >> Thanks for that info.
    >>
    >> Do you know if any of the other PDF writers support automation? If so[/color]
    >which one? I gather[color=green]
    >> some version of Adobe does, but am uncertain how this works or which[/color]
    >version.[color=green]
    >>
    >> Any follow up info you could provide would be appreciated. If I have to[/color]
    >buy a PDF writer I[color=green]
    >> certainly want to support automation with it.
    >>[/color]
    >
    >
    >pdf995 stores output file name and folder info in an .ini file. All you need
    >to do is edit the .ini file in code. It's simple and very inexpensive..
    >[/color]

    Comment

    • Sean O

      #17
      Re: Programming to &quot;Print&quo t; using CUTE PDF!

      I have downloaded the Win2PDF. It installed easily and the simple
      commands work fine.

      For example:
      SaveSetting "Dane Prairie Systems", "Win2PDF", "PDFFileNam e", PathName

      works just fine, but the commands that set the registry items are not
      working. I pasted their code in, but when I call the routines:

      SaveWin2PDFDwor d "file options", 0x02

      It either does not work at all or says it's the wrong type. How do
      you get the hex to work?

      Their samples are VB, is that the problem? It would be great if
      someone had some sample code similar to that which the earlier poster
      put up for pdfFactory.

      Thanks,

      Tony





      steve@nospam.co m (Steve) wrote in message news:<40940ad0. 24146370@news.w estnet.com>...[color=blue]
      > On Thu, 29 Apr 2004 23:52:21 GMT, John Baker <Baker.JH@Veriz on.net>
      > wrote:
      >[color=green]
      > >Do you know if any of the other PDF writers support automation? If so which one? I gather
      > >some version of Adobe does, but am uncertain how this works or which version.[/color]
      >
      > I use WIn2PDF and automate the generation of PDFs from both Access and
      > Excel, including assiging the file name, using Registry entries.
      > However, it does require Windows XP, NT, or 2000.
      >
      > See
      >
      >
      > http://www.daneprairie.com/products/win2pdf.htm
      >
      >
      > Steven Zuch
      > Cogent Management Inc.[/color]

      Comment

      • SA

        #18
        Re: Programming to &quot;Print&quo t; using CUTE PDF!

        John:

        Our PDF and Mail Library for Access may be an option. It supports
        outputting PDF files using any of the following drivers:

        Adobe drivers (versions 3-6)
        Win2PDF
        pdfFactory
        PDF 995
        PDF 4 U
        Amyuni PDF Converter

        Certainly one could spend hours getting the programming right with any
        particular driver, our library provides a quick, in-expensive solution to
        "automate" output with any of those drivers, including securing files (PDF
        Pro Plus edition), merging files, adding book marks etc. Code is as simple
        as:

        Const PDFENGINE_ADOBE _PDF = 2

        Dim objPDF as New PDFClass
        With objPDF
        .ReportName = "Your Report"
        .ReportWhere = "Some SQL Filter"
        .PDFEngine = PDFENGINE_ADOBE _PDF
        .OutputFile = "c:\some dir\some file.pdf"
        .PrintImage
        Debug.print .Result
        End With

        You'll find the library on our web site in the developer tools area.
        --
        Steve Arbaugh
        ACG Soft


        "John Baker" <Baker.JH@Veriz on.net> wrote in message
        news:de5390h3k2 ipa7e8o5rjgtl76 lb2359ve1@4ax.c om...[color=blue]
        > Thanks for that info.
        >
        > Do you know if any of the other PDF writers support automation? If so
        > which one? I gather
        > some version of Adobe does, but am uncertain how this works or which
        > version.
        >
        > Any follow up info you could provide would be appreciated. If I have to
        > buy a PDF writer I
        > certainly want to support automation with it.
        >
        > Best Regards
        >
        > John Baker
        >
        > "Albert D. Kallal" <kallal@msn.com > wrote:
        >[color=green]
        >>That pdf creator does not supprot automation..and thus you can't set the
        >>file name as far as I know...[/color]
        >[/color]




        Comment

        Working...