Print a PDF silent - xharbour

This is a discussion on Print a PDF silent - xharbour ; Hello, I'm looking for a way to silent print a PDF. I tried Adobe Reader, but it keeps loading the PDF and the user needs to click on the print button. Do you guys know of another solution? I need ...

+ Reply to Thread
Page 1 of 2 1 2 LastLast
Results 1 to 10 of 18

Print a PDF silent

  1. Default Print a PDF silent

    Hello,

    I'm looking for a way to silent print a PDF.

    I tried Adobe Reader, but it keeps loading the PDF and the user needs
    to click on the print button. Do you guys know of another solution?

    I need to print an array of PDF files without user intervention.

    Thanks!
    --
    Patrick


  2. Default Re: Print a PDF silent

    Patrick
    > Hello,
    >
    > I'm looking for a way to silent print a PDF.
    >
    > I tried Adobe Reader, but it keeps loading the PDF and the user needs to
    > click on the print button. Do you guys know of another solution?
    >
    > I need to print an array of PDF files without user intervention.

    look for primopdf

    Regards
    Luiz



  3. Default Re: Print a PDF silent


    In order to CREATE a series of PDF file I started to write a class
    arounf the OLE interface of PDFCreator... then I had the HD fault at
    work and the notebook was stolen...

    In order to PRINT a bunch of pdf files, I think you may try to
    investigate the OLE interface of Acrobat Reader or foxit. At last you
    may try to use ghostscript.

    Francesco

  4. Default Re: Print a PDF silent

    Look Bullzip is free.

    http://www.bullzip.com/products/pdf/info.php

    It's fantastic for me.
    Pere.


    "Patrick Mast" <Patrick.RemoveThis.Mast@xHarbour.com> escribió en el mensaje
    news:2008052216510543658-PatrickRemoveThisMast@xHarbourcom...
    > Hello,
    >
    > I'm looking for a way to silent print a PDF.
    >
    > I tried Adobe Reader, but it keeps loading the PDF and the user needs to
    > click on the print button. Do you guys know of another solution?
    >
    > I need to print an array of PDF files without user intervention.
    >
    > Thanks!
    > --
    > Patrick
    >




  5. Default Re: Print a PDF silent

    I use PDFP. Works great.

    Patrick Mast wrote:
    > Hello,
    >
    > I'm looking for a way to silent print a PDF.
    >
    > I tried Adobe Reader, but it keeps loading the PDF and the user needs to
    > click on the print button. Do you guys know of another solution?
    >
    > I need to print an array of PDF files without user intervention.
    >
    > Thanks!


  6. Default Re: Print a PDF silent

    A little more detail here: I use it from within a DOS application to
    print PDF files in a batch.

    It's as simple as having PDFP.EXE in your search path, and calling
    "PDFP your.pdf".


    Tim Jacob wrote:
    > I use PDFP. Works great.
    >
    > Patrick Mast wrote:
    >> Hello,
    >>
    >> I'm looking for a way to silent print a PDF.
    >>
    >> I tried Adobe Reader, but it keeps loading the PDF and the user needs
    >> to click on the print button. Do you guys know of another solution?
    >>
    >> I need to print an array of PDF files without user intervention.
    >>
    >> Thanks!




  7. Default Re: Print a PDF silent

    "Patrick Mast" <Patrick.RemoveThis.Mast@xHarbour.com> wrote in message
    news:2008052216510543658-PatrickRemoveThisMast@xHarbourcom...
    > Hello,
    >
    > I'm looking for a way to silent print a PDF.
    >
    > I tried Adobe Reader, but it keeps loading the PDF and the user needs
    > to click on the print button. Do you guys know of another solution?
    >
    > I need to print an array of PDF files without user intervention.
    >
    > Thanks!
    > --
    > Patrick
    >


    Patrick,

    This question was answered on this newsgroup back in March.

    From the Adobe Developer Knowledgebase:

    How To: Reader command line printing



    Issue
    How can we print PDF files through the command line without displaying the
    print dialog?
    Solution
    As documented in the Acrobat Developer FAQ at
    http://partners.adobe.com/asn/develo...DeveloperFAQ.p
    df, you can use the /t command line to print silently. Please note that
    there is slightly different behavior between 4.05 and 5.05.

    In Acrobat 4.0.5, /t launches Acrobat Reader in a hidden context and also
    supresses the Print Dialog box.
    In Acrobat 5.0.5, /t launches Acrobat Reader in a minimized context in the
    taskbar and suppresses the Print Dialog box.

    The following command line prints test.pdf on a network printer
    AcroRd32.exe /t "C:\test.pdf" "\\servername\printername" "AdobePS Tektronix
    Phaser 840" "123.45.678.910"

    The following command line without drivername and portname works, too.
    AcroRd32.exe /t "C:\test.pdf" \\servername\printername

    Best regards,
    Gene



  8. Default Re: Print a PDF silent

    On my system, using Acrobat Reader 8.1.2, it opens Acrobat up into a window.

    Gene Stempel wrote:
    > "Patrick Mast" <Patrick.RemoveThis.Mast@xHarbour.com> wrote in message
    > news:2008052216510543658-PatrickRemoveThisMast@xHarbourcom...
    >> Hello,
    >>
    >> I'm looking for a way to silent print a PDF.
    >>
    >> I tried Adobe Reader, but it keeps loading the PDF and the user needs
    >> to click on the print button. Do you guys know of another solution?
    >>
    >> I need to print an array of PDF files without user intervention.
    >>
    >> Thanks!
    >> --
    >> Patrick
    >>

    >
    > Patrick,
    >
    > This question was answered on this newsgroup back in March.
    >
    > From the Adobe Developer Knowledgebase:
    >
    > How To: Reader command line printing
    >
    >
    >
    > Issue
    > How can we print PDF files through the command line without displaying the
    > print dialog?
    > Solution
    > As documented in the Acrobat Developer FAQ at
    > http://partners.adobe.com/asn/develo...DeveloperFAQ.p
    > df, you can use the /t command line to print silently. Please note that
    > there is slightly different behavior between 4.05 and 5.05.
    >
    > In Acrobat 4.0.5, /t launches Acrobat Reader in a hidden context and also
    > supresses the Print Dialog box.
    > In Acrobat 5.0.5, /t launches Acrobat Reader in a minimized context in the
    > taskbar and suppresses the Print Dialog box.
    >
    > The following command line prints test.pdf on a network printer
    > AcroRd32.exe /t "C:\test.pdf" "\\servername\printername" "AdobePS Tektronix
    > Phaser 840" "123.45.678.910"
    >
    > The following command line without drivername and portname works, too.
    > AcroRd32.exe /t "C:\test.pdf" \\servername\printername
    >
    > Best regards,
    > Gene
    >
    >


  9. Default Re: Print a PDF silent

    Tim Jacob wrote:
    > On my system, using Acrobat Reader 8.1.2, it opens Acrobat up into a
    > window.
    >
    > Gene Stempel wrote:
    >> "Patrick Mast" <Patrick.RemoveThis.Mast@xHarbour.com> wrote in message
    >> news:2008052216510543658-PatrickRemoveThisMast@xHarbourcom...
    >>> Hello,
    >>>
    >>> I'm looking for a way to silent print a PDF.
    >>>
    >>> I tried Adobe Reader, but it keeps loading the PDF and the user needs
    >>> to click on the print button. Do you guys know of another solution?
    >>>
    >>> I need to print an array of PDF files without user intervention.
    >>>
    >>> Thanks!
    >>> --
    >>> Patrick
    >>>

    >>
    >> Patrick,
    >>
    >> This question was answered on this newsgroup back in March.
    >>
    >> From the Adobe Developer Knowledgebase:
    >>
    >> How To: Reader command line printing
    >>
    >>
    >>
    >> Issue
    >> How can we print PDF files through the command line without displaying
    >> the
    >> print dialog?
    >> Solution
    >> As documented in the Acrobat Developer FAQ at
    >> http://partners.adobe.com/asn/develo...DeveloperFAQ.p
    >>
    >> df, you can use the /t command line to print silently. Please note that
    >> there is slightly different behavior between 4.05 and 5.05.
    >>
    >> In Acrobat 4.0.5, /t launches Acrobat Reader in a hidden context and also
    >> supresses the Print Dialog box.
    >> In Acrobat 5.0.5, /t launches Acrobat Reader in a minimized context in
    >> the
    >> taskbar and suppresses the Print Dialog box.
    >>
    >> The following command line prints test.pdf on a network printer
    >> AcroRd32.exe /t "C:\test.pdf" "\\servername\printername" "AdobePS
    >> Tektronix
    >> Phaser 840" "123.45.678.910"
    >>
    >> The following command line without drivername and portname works, too.
    >> AcroRd32.exe /t "C:\test.pdf" \\servername\printername
    >>
    >> Best regards,
    >> Gene
    >>
    >>

    You can download a copy of Acrobat version 5.05 from:
    http://www.shoso.co.za/download/ar505enu.exe
    The older stuff is usually better!
    --
    Norman Perelson
    http://shoso.com

  10. Default Re: Print a PDF silent

    Hey Gene,

    > This question was answered on this newsgroup back in March.
    > From the Adobe Developer Knowledgebase:
    > How To: Reader command line printing


    Thanks for the pointer. Now, I tried this approach, but the Adobe
    reader windows keeps popping up. So, as for the printing part, this
    works, as for the "Silent" not.

    Patrick


+ Reply to Thread
Page 1 of 2 1 2 LastLast