Open a certain page of a PDF file

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

  1. #1

    Default Open a certain page of a PDF file


    Leonardo_Ferreira@adobeforums.com Guest

  2. Similar Questions and Discussions

    1. open swf file to specific page
      how can a do that with a URL or a command line? thanks, M. Lee
    2. Duplicate files open anytime I open a file
      When I open an Illistratro file, two of the same file opens everytime. I browsed everyone of the subjects suggesting anything with the word...
    3. Open PDF file to a Specific Page
      It seems like the solution you are looking for is AcosHelp, developed by me. For more information see <http://www.acoshelp.com>. Peter Ring...
    4. Open file, make changes, save file, close, re-open, file contents not changed
      I've now run into this several times and it's completely destroyed all of my confidence in Ilustrator CS on Mac. I'm hoping someone can confirm that...
    5. Can't open large file (web page)
      Hey everyone: I'm so stuck! I built a website in Publisher; it's 296MB; I can't get it to open at all. I've tried a million times; At first I...
  3. #2

    Default Open a certain page of a PDF file

    Hello everyone,
    im developing a app with c# and i want to allow the user to view the "main" file... but not only this... if in the app he choose to see the record of "John Doe" when he clicks the TAKE A LOOK button i want to open the file in the page of "JOHN DOE"...

    details: i know the name of the page that "JOHN DOE" is...
    -the reader that will be avalible in the machines is the reader 8.0
    -im developing in VS using C#
    in our ilustrative case here our "JOHN DOE" is in page 105 but this:

    Process.Start(string.Format(@"C:\FPC\2.2.0\doc\pro g.pdf"), "page=105");

    is not working... its opening the file always in page 1... its like the reader is ignoring the second part...
    Leonardo_Ferreira@adobeforums.com Guest

  4. #3

    Default Re: Open a certain page of a PDF file

    Please read the documentation about open parameters...
    Leonard_Rosenthol@adobeforums.com Guest

  5. #4

    Default Re: Open a certain page of a PDF file

    can u be a little more specific? i already did it... at least i think so...
    this is what i read <http://partners.adobe.com/public/developer/en/acrobat/PDFOpenParameters.pdf>
    Leonardo_Ferreira@adobeforums.com Guest

  6. #5

    Default Re: Open a certain page of a PDF file

    That's the correct document.

    I don't know anything about "process.start()", so I can't verify your parameters there. Try those same parameters with other, documented, methods.
    Leonard_Rosenthol@adobeforums.com Guest

  7. #6

    Default Re: Open a certain page of a PDF file

    got it: if anyone want to know the answer:

    string acrobatReader = @"C:\Arquivos de programas\Adobe\Acrobat 8.0\Acrobat\Acrobat.exe";
    string file = @"C:\FPC\2.2.0\doc\prog.pdf";
    string parameters = "/A page=4";

    ProcessStartInfo info = new ProcessStartInfo(acrobatReader, parameters + " " + file);
    Process.Start(info);
    Leonardo_Ferreira@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