SDK Resources & Microsoft Access

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

  1. #1

    Default SDK Resources & Microsoft Access

    We own Acrobat 9.0 Standard, and I have the SDK installed on my machine.

    We develop and market a Microsoft Access application that comes with a PDF User Manual. Though the end user can browse that PDF themselves, we'd now like to add the functionality of integrating that PDF throughout the application at a touch of a button.

    There are two ways of implementing this:
    a. Open an Acrobat window within our Microsoft Access application.
    b. Open an Acrobat Reader externally and send it to the relevant page.

    The IAC documentation seems to indicate that both these options are doable. But I need help.

    Questions:
    1. Has this been done before, and if so, is there available an Access MDB with examples, including VBA code?
    2. Is there an ActiveX, Plug-In, or Add-In available that would give me that functionality? Though I've worked with ActiveX objects in Access before, I'm not in a position to create one myself using VB.
    3. I've successfully created code that opens an Acrobat window and sends it to a specific page. However, I've had some difficulties that indicate it's not nearly ready for distribution with our product.
    a. Sometimes it opens the window, but it's frozen. It doesn't repaint, and is completely inaccessible. Today (with a brand-new Acrobat 9.0 installed) it opens repeatably just fine.
    b. Though I've got the Acrobat.tlb on my machine, it's currently not checked as a Reference in the app, yet my commands still work.I'm puzzled.
    c. Even though I Exit the Acrobat app object, and then kill the object, the Acrobat window now stays open. I have to close it manually. Why?, or, How do I kill it? (acro_app.Exit: Set acro_app = Nothing)
    d. How do I test it on my machine using an Acrobat Reader? The VBA commands seem to rely on whatever is registered for PDF. For testing, is there a way to tell it which Reader I want it to use?

    Help with any of these questions would be greatly appreciated. Thanks.

    --Victor
    Victor_Campbell@adobeforums.com Guest

  2. Similar Questions and Discussions

    1. [microsoft][odbc microsoft access driver] syntax error (missing operator) in query expression error
      I have a query I want to run using DBQwiksite siftware, which produces the syntax error (missing operator) in query expression error when...
    2. [Microsoft][ODBC Microsoft Access Driver] Could not start session.
      Does anyone know what this problem means??? Microsoft OLE DB Provider for ODBC Drivers error '80004005' Could not start session. ...
    3. Restrict access to resources like .doc, .ppt etc in .net forms authentication application
      Hi, We are developing a .NET app which has forms authentication. When the user types in the direct URL which is an aspx page, he will be thrown...
    4. [Microsoft][ODBC Microsoft Access Driver]'(unknown)' is not a valid path error
      This is probably an old problem that most of you know how to fix (I hope!). The scenario is that I have a web server running an ASP site that needs...
    5. Access network resources from ASP.NET
      Hi! after extensive research of this topic, I'm still not sure what is "official" way to do it. Task: 1. User submits some request to...
  3. #2

    Default Re: SDK Resources & Microsoft Access

    First thing you need to do is download the Acrobat SDK and read the documentation and look at the samples. That would have answered most of your questions for you.

    1 - There are no Access samples, but there are VB & C# samples.
    2 - Yes, it's installed with Reader.
    3 - Seems like problems with your code
    3d - if you want Reader, then target Reader. If you want Acrobat, target Acrobat. If you want to test only one - VMWare, VirtualPC, etc. are great tools.
    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