How do I save changes to a PDF with AxAcroPDFLib.AxAcroPDF?

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

  1. #1

    Default How do I save changes to a PDF with AxAcroPDFLib.AxAcroPDF?

    I am using C# and have created a regular Windows form. I have used COM and registered AxAcroPDFLib.AxAcroPDF. Here is my code;

    axAcroPDF1.LoadFile("myfile.pdf")
    axAcroPDF1.Show();
    MessageBox.Show("Showing...");

    This works fine. But, just like the browser, I cannot save changes to the PDF. I have the full version of Adobe Acrobat installed, Standard 8.0. I also have the Pro. version 7.1.0 on another PC. When I click save I just get prompted to save it locally, just like I was in the browser.

    If I edit these normally, just via Adobe Acrobat Standard, I can save my changes. I cannot do it via the AxAcroPDFLib library.

    How do I save changes to my adobe acrobat pdf file in my program? Thank you for any help. please.
    justlearning@adobeforums.com Guest

  2. Similar Questions and Discussions

    1. AxAcroPDF LoadFile contains Unicode (CJK) characters
      I'm using AcroPDF.dll version 9.0 in my C#.Net Windows Forms application. I initialize an instance of the Adobe control, and use the LoadFile method...
    2. AxAcroPDFLib.AxAcroPDF.LoadFile changes?
      Sorry for the duplicate message (this is also posted in the Adobe Reader forum) Hi, I have made a Windows client application where I use the...
    3. Remove the PDF file from a AxAcroPDFLib.AxAcroPDF object
      I created a PDF object of an instance of the AxAcroPDFLib.AxAcroPDF class. I loaded a file to it using OBJ.LoadFile("x.pdf") Now I want to...
    4. AxAcroPDF
      Hello. If I open a file in a window with visual basic net does not work the advanced search. Can somebody help me. Thanks in advance ...
    5. AxAcroPDF How to Close Down Acrobat
      The thing is I use the AxAcroPDF on my VB6 program but whenever I use that control it opens the Acrobat Reader and then it won't close it. Is...
  3. #2

    Default Re: How do I save changes to a PDF with AxAcroPDFLib.AxAcroPDF?

    You can't.

    The ActiveX control that you are using is designed for viewing purposes only and not for PDF manipulation, etc.

    If you wish to view AND edit - look at the COM APIs that are documented in the Acrobat SDK.
    Leonard_Rosenthol@adobeforums.com Guest

  4. #3

    Default Re: How do I save changes to a PDF with AxAcroPDFLib.AxAcroPDF?

    I did this after I wrote this. I have looked at the documentation but I can't find what I am looking for. Is there another way to open a file for viewing that has the full capabilities or using the normal program...one that uses something besides AxAcroPDFLib.AxAcroPDF. The sample that did have a view used AxAcroPDFLib.AxAcroPDF so it wasn't helpful. All I need is normal program functionality of adobe standard or profession within the application. The users have a full version installed on their PC.

    Thanks again.
    justlearning@adobeforums.com Guest

  5. #4

    Default Re: How do I save changes to a PDF with AxAcroPDFLib.AxAcroPDF?

    Look at the ActiveView sample.
    Leonard_Rosenthol@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