Printing document using AVDoc.PrintPages

Ask a Question related to Adobe Acrobat SDK, Design and Development.

  1. #1

    Default Printing document using AVDoc.PrintPages

    Hello,

    I have used AVDoc.PrintPages to print PDF pages, it worked all fine until I upgraded from Adobe Pro version 7 to Adobe Std version 9.
    When I try to print, the code just passes by and nothing happens, do the Std edition not support printing documents?

    //Daniel
    Daniel_Brolin@adobeforums.com Guest

  2. Similar Questions and Discussions

    1. pdf document printing with red boxes
      I'm having trouble printing my pdf documents (Acrobat 8 Professional) to my HP Color LaserJet 2605dn. Most pages print with all or part of the page...
    2. AcroExch.AVDoc.FindText()
      Hi, there Does anyone have any experience of the FindText() function? I was hoping to use it together with acrApp.MenuItemExecute "NewBookmark" to...
    3. Duplicate AVDoc for the same PDDoc
      Is it possible to duplicate an AVDoc and show it in an external Window? According to API Reference, „“Starting with Acrobat 7.0, it is possible to...
    4. Printing document and comments
      Is there a way to set the default print option of a document created and "stamped" using adobe 5.0 writer so that when you read it in adobe 6.0 it...
    5. Printing into formated document
      hi folks, at work we have preprinted forms with header ... that we use to print the documents, quotes .... at is there a way in Acrobat to be...
  3. #2

    Default Re: Printing document using AVDoc.PrintPages

    I have developed a plugin and I use the following to print documents.

    AVDocPrintPages(avDoc, firstPage, numPages, 2, true, true);
    michael_eisenman@adobeforums.com Guest

  4. #3

    Default Re: Printing document using AVDoc.PrintPages

    It´s this command;
    AVDoc.PrintPages(0, iPages, 2, False, True) that I use.
    I have also tried to print using this setting;
    AVDoc.PrintPages(0, iPages, 2, True, True) with the same result.

    I use the same code on two different machines one with Adode 7 Pro and one with Adobe 9 Std. It just workes with Adobe 7 Pro, should I install some update?

    //Daniel
    Daniel_Brolin@adobeforums.com 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