Print PDF in asp w/o print dialog

Ask a Question related to ASP Components, Design and Development.

  1. #1

    Default Print PDF in asp w/o print dialog

    Hi,

    I have searched my forum for an answer. But I still want to confirm
    with reality.
    is it possible to print PDF w/o the print dialog to show up?

    I use this command acrobat.exe /t c:\myFile.pdf at command prompt. it
    printed directly to default printer. I am trying to do the same in asp
    using

    <%
    set wshell = CreateObject("WScript.Shell")
    wshell.run "acrobat.exe /t c:\myFile.pdf "
    set wshell = nothing
    %>

    but I always get the same error:
    Error Type:
    (0x80070002)

    I gave the ISUR_<computername> the permission to execute at adobe
    folder and .exe but stil not working

    Does anybody have an answer for this problem?

    thank you,
    Charles

    charles Guest

  2. Similar Questions and Discussions

    1. Very slow print dialog window
      The problem is when I select print from InDesign CS it takes 16 seconds for the print dialog window to appear, during that time the beach ball is...
    2. Funkiness in print dialog box
      When I go to print a document, I hit command-P, and up jumps the print dialog box. I select the printer I want to use, and go from the "Copies &...
    3. Illustrator 10 Print Space settings in Print Dialog
      Howdy all; I've got a peculiar situation that I haven't found an answer to yet. On my laptop PC (Windows XP Home) when I go to print a document...
    4. Bypass Print Dialog
      Hi all, I'm building a ticketing system for a minor league baseball team and of course it will utilize a ticket printer. I was wondering if there...
    5. How can I open the print dialog
      you could add a print-button - let it go "server side" to display what you want to print, and register some java to print the form... then direct...
  3. #2

    Default Re: Print PDF in asp w/o print dialog

    Also, add everyone
    "charles" <shang.hsieh@gmail.com> wrote in message
    news:1175638647.956977.299150@q75g2000hsh.googlegr oups.com...
    > Hi,
    >
    > I have searched my forum for an answer. But I still want to confirm
    > with reality.
    > is it possible to print PDF w/o the print dialog to show up?
    >
    > I use this command acrobat.exe /t c:\myFile.pdf at command prompt. it
    > printed directly to default printer. I am trying to do the same in asp
    > using
    >
    > <%
    > set wshell = CreateObject("WScript.Shell")
    > wshell.run "acrobat.exe /t c:\myFile.pdf "
    > set wshell = nothing
    > %>
    >
    > but I always get the same error:
    > Error Type:
    > (0x80070002)
    >
    > I gave the ISUR_<computername> the permission to execute at adobe
    > folder and .exe but stil not working
    >
    > Does anybody have an answer for this problem?
    >
    > thank you,
    > Charles
    >

    Raj Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139