Acrobat X ActiveX Control problem

Hello,
we embed Acrobat Reader X in our application to view PDF Files. We use the Acrobat Reader Active X Control for that. Recently we started to get report about problems with the plugin and do not know what to search for. It seems that when used as ActiceX Control, Acrobat Reader is not loading the document correctly which makes find operations or signature checks hang forever. Also no thumbnails are created in Thumbnails View (just an empty white page). Opening the same file in reader directly works OK with no issues. Any ideas what to look for? The same code works perfectly with older versions of Acrobat ActiveX Control.
Here some screenshots from a sample application we created to test the issue:
1) No Thumbnails - only white pages
2) No signature - although the document is signed
3) When pressing 'Verify All' on the signatures panel - the following message appears (it basically states: "for this operation, the whole document needs to be downloaded") - but the document is local and has been loaded. Pressing OK makes it hang forever.
A similar problem happens when using CTRL+F - i can enter a search, but then it hangs forever saying that page 1 of x is searched. Probably the same issues that the Active X controls thinks it needs to download something.
Here the code we use to create the control and load the file:
m_pPdf = new CAcroAXDocShim;
     CRect r; GetClientRect(r); r.bottom -= 50;
     if (!m_pPdf->Create(_T("AdobeWnd"), WS_CHILD | WS_VISIBLE, r, this, 12345))
          delete m_pPdf;
          m_pPdf = NULL;
     m_pPdf->LoadFile (_T("d:\\temp\\Thea7b2.pdf"));
Anyone experienced something similar?
Any help or feedback would be greatly appeciated.
Thanks,
Wolfgang

Same problem here with 10.1.0.
No new information about a fix/update/solution????
Regards,
Andreas

Similar Messages

  • Acrobat Reader ActiveX Control printer selection

    Hello,
    I'm using the Acrobat Reader ActiveX control  in a web page (IE8) to automatically print a PDF document. I don't want to show the preferences dialog box, so I use the "printAllFit" method. This method sends the document to the default printer of the OS.
    The problem that I have is that the client uses more than one printer, so I need to change the default printer before the method invocation. But if I change the default printer (manually or programmatically by a custom ocx) the ActiveX is still sending the document to the initial default printer.
    I have solved the problem for Acrobe Reader 8 (or lower) by killing the Windows process of the Acobat Reader ("AcroRd32.exe") before a new method invocation, but in Acrobat Reader 9 this process doesn't exist (I think that it is associated to the IE process, and I can't terminate it).
    Any idea to solve this problem?
    Thank you very much for your help

    With Reader 9, there is one process per PDF that is opened.

  • Acrobat Reader 9.1 ActiveX control problems

    We have an application written in VB.NET 2005 which displays a PDF file using embedded ActiveX control from Acrobat Reader (using AcroPDF.dll).
    The code to open the file is very simple:
    Me.AxAcroPDF1.LoadFile(_path)
    The application was compiled on the machine that had Acrobat Reader 8 installed and distributed. The users also had Acrobat 8 installed.
    Some of the users upgraded to Acrobat 9.1. I understand that it shouldn't really matter as the ActiveX control from 9.1 should be backward compatible.
    Yet some users cannot open the file and receive the following error message:
    "Error HRESULT E_FAIL has been returned from a call to a COM component"
    Some other users can open the file but have the following message when closing the application (which calls Me.AxAcroPDF1.Dispose() ):
    "The instruction at "0x0700609c" referenced memory at "0x00000014". The memory could not be "read"."
    What can cause those problems? How can I fix them?

    OK, no one responsed to my questions but I found answers for them so I thought I might put them here for those interested.
    As for "HRESULT E_FAIL" message, all that was wrong was the "Display PDF in browser" option in Adobe Reader preferences. It needs to be ticked. A bit weird but considering that it uses the same OCX in a web browser, it makes some sense.
    As for the memory issues message, I need to unload libraries manually before exiting the application (as suggested in some other thread in this forum):
    <DllImport("ole32.dll")> _ 
    Friend Shared Sub CoFreeUnusedLibraries() 
    End Sub
    Me .AxAcroPDF1.Dispose()UnmanagedCode.CoFreeUnusedLibraries()

  • Internet Explorer ActiveX control problems

    I want to use the IE4 ActiveX control to launch some web apps from a Forte
    app.
    The error I'm getting is:
    USER ERROR: The ActiveX Control Class supplied by the application is named
    'InternetExplorer' and has a CLASSID of
    '{0002DF01-0000-0000-C000-000000000046}'. This does not match the OLE
    object
    embedded within the OLEField which is named 'Shell.Explorer.2' and has a
    CLASSID of '{8856F961-340A-11D0-A96B-00C04FD705A2}'.
    These are the steps I took to get the ActiveX control into the app.
    1. olegen -it shdocvw.dll -of shdocvw.pex
    2. Imported shdocvw.pex.
    3. Fixed comile errors - had to delete some attributes and comment out
    references to those attributes to get it to compile.
    4. In Window Manager - added a new ActiveX field.
    Attribute name = IE4ActiveX
    Mapped Type = ShDocVw.InternetExplorer
    5. Display method code:
    self.Open();
    event loop
    when task.Shutdown do
    exit;
    when <launchBtn>.Click do
    self.<IE4ActiveX>.oleobjectvalue =
    myInternetExplorer;
    myInternetExplorer.Navigate( URL =
    'www.forte.com',Flags = NIL,TargetFrameName = NIL,PostData = NIL,Headers =
    NIL,_result = NIL);
    when <exitBtn>.Click do
    exit;
    end event;
    self
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    Update to 8.0.2, please.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Soc4me3" <[email protected]> wrote in
    message
    news:eiedp1$hik$[email protected]..
    > Hi,
    > I have a website with a members area and login and had
    it working
    > perfectly
    > until my friend told me he could not access it from his
    new Internet
    > Explorer
    > 7.0. When he logs in it just tells him he is not putting
    in the right
    > password
    > but if he does it on my internet explorer it works. Can
    someone help me
    > fix
    > this major problem. Thanks.
    > -Chris
    >

  • ActiveX Control Problem

    When I Generate Primary Layout and View Results I get my
    project in a browser (IE7) and a message telling me that IE has
    restricted the webpage from running scripts or ActiveX controls. I
    have to Allow Blocked Content to see my finished product properly.
    I am using the BeautifulVistas-WH-Generic skin, but I don't
    see that until I Allow Blocked Content. Prior to that, I see a more
    generic looking skin. All add-ins are enabled, and my security
    settings are set to low. How can I avoid this?

    Sounds like you are viewing webhelp locally without Mark of
    the Web inserted. That will not happen to the end users as they
    will view the help from a server.
    You can either add MOTW or set IE to allow the blocked
    content if you want to view it locally.

  • Microsoft Word Templates and ActiveX Control Problems

    Hi,
    I am experiencing a strange problem in Microsoft Word. I am writing a VBA application which displays a cwgraph in a form. If I add the graph to a form in the Normal.dot template the control is fine. If I add the graph to a form in a new template (where all my code is) the graph displays evaluation copy. The graph in the Normal.dot template is fine and displays without the licensing information and in the properties it displays the correct licence code etc.
    Has anyone experienced this before and got any suggestions.
    Thanks in advance.
    Regards.
    Joe

    Jon.
    Thanks for the reply. I have already run the license fixer utility and it does not locate any broken licenses. I have also uninstalled everything and deleted cwui.ocx in System32, then reinstalled and tried again. The strange thing is that it works in Visual Basic standalone, in the normal.dot template in Word. It just doesn't work in a different template file.
    Thanks.
    Joe

  • ActiveX control Problem with Froms 6.0.8.11.3

    Hi,
    I am using Oracle Forms 6.0.8.11.3 version on windows XP.
    I am inserting the activex object in the layout and when runing the form the object is not shown.
    After that when i am checking in the design (FMB) file the object is not shown and asking me to reinsert the object.
    Can any body guide me on this? Is there any bugs are there related to this ?
    Thank you
    Gouri

    Yup - Sounds like 593051 which is to do with the licence information used by the ActiveX not being correctly stored with the control. This is fixed in 6.0.8.15.1

  • Digital signatures in Acrobat activex control

    Hi, can anyone help me please.
    I'm embedding the acrobat reader activex control inside a winforms application (C#).
    I can load a document and it does display on the winform application.
    Now, in the PDF document, there is a signature field, so when you click on the signature field it is suppose to pop up a window that acquires the signature from a signature pad (I've got a topaz and wacom signature pad connected to the pc).
    Instead a different signature window is displaying, where you select from a list of certificates to be inserted.
    Now, first of all is it possible when using the activex control to obtain signatures from external devices like my signature pads? I just can't seem to get this to work.
    Regards
    Gerhard

    It is Adobe Reader X, yes it does work with Reader in standalone mode, no web browser also the same thing, doesn't pop up the window to select the signature pad to get the signature from.

  • How to set Print...More Options...Current View in ActiveX control?

    I am using Visual Studio 2012 to develop an application that will open large PDFs (24" x 36") and allow the user to zoom to a particular part of the document. I want to give them a Print button on my application to simply print the Current View of the document to the default printer. I want limited customer options, so no showing the Print Dialog, etc... This will be for general customer use. I am trying to do this with the Acrobat Reader ActiveX control. If this cannot be done with the ActiveX control, I thins something I could do with the full Acrobat SDK? Thanks!

    The Reader control actually does what I want pretty well. I set the mouse wheel to allow zooming, the hand tool to drag the document around works easy and fast. I just need to turn off some of the Acrobat Toolbar options and set this Print Current View option.
    This is frustrating as back in Acrobat Reader 7 or 8 I think, you could set the Current View in the Print Dialog and the setting would stay until it was specifically changed. Now it reverts per print job, thus I now having to code against the Reader control, or other, to get around it, to keep the user from having to set this option each time (and the user will change frequently as they are walk-in customers)
    Anyway with this additional list of requirements, do you thihnk I still cannot do it with the Reader ActiveX control? If not, and I need to use the SDK, do you mean I would have to buy a full copy of Adobe Acrobat and install on that system for the application to work? If so, do I also need to buy another full copy of Adobe Acrobat for my development system so I can write code and test the application? If I need a full copy for the Dev computer, does Adobe have any kind of reduced pricing for a Dev version?
    Thanks!

  • Adobe Acrobat Reader ActiveX Zoom Issue

    I can't seem to figure out a way to calculate the current zoom percentage.  When the document comes up it's auto sized for width.  However I have no way of knowing what the zoom value is.  How do I figure out what the current zoom is?  I'm using the Adobe Acrobat Reader ActiveX control.  I can't use the full version or anything that requires a royalty because this application will be distributed to thousands of clients.  So to the vendors that want me to buy their product don't waste your time...  Thank you in advance for any assistance.

    Reader Forum (it is a different product)
    http://www.adobeforums.com/webx?13@@.3bbf42f7

  • Using Acrobat Reader activeX to get the current page views in a document

    Hello,
    I'm using the Acrobat Reader ActiveX control.
    How can I use this API (or any other way) to get the current page of the PDF document inside the Acrobat reader ActiveX control ?
    Thanks
    Ariel

    Aandi,
    I reckon that you might be right.
    But as side note, maybe Adobe will lose me and others as contributers for her PDF oriented solutions for other formats.
    In the long run experts can tell which approach is better: a .Net like approach (no limitations upon development issues for ) or this kind of an approach.
    Thank you very very much for you help!
    Ariel

  • Problem with Acrobat Reader Browser Control (LoadFile)

    Hi
    I am trying to use the Acrobat Reader Browser ActiveX Control to show a PDF file in a window from my application but I am finding a problem. It all works fine, unless I have the exact same PDF file open in Acrobat Reader at the same time. If I have the exact same PDF file open, the Browser Control appears to completely fail when I tell it to LoadFile. No errors are raised, but the control simply appears as a white rectangle with no controls at all. In fact, it is the same appearance that it has if you don't call LoadFile at all.
    I have Reader 9.3.4, I am using VB6, I have drawn an instance of the control at design time. I am only calling LoadFile, like this
    Private Sub Form_Load()
        AcroPDF1.LoadFile "c:\mypdf.pdf"
    End Sub
    I have read the OLE parts of the interapplication developer guide and the interapplication communication api reference and I can't see that I am doing anything wrong.
    Can anyone help? Is this perhaps a known problem in Reader?
    Thanks in advance
    Mark

    Hi everyone,
    I have found a workaround, inspired by another post about LoadFile problems. Rather than LoadFile I am now using the "src" property of the control. This works even when the PDF file is open in Acrobat Reader. My code is now
    Private Sub Form_Load()
        AcroPDF1.src = "c:\mypdf.pdf"
    End Sub
    I don't understand why this should work, but it does.
    Thanks
    Mark

  • Problems using ActiveX controls

    Hello all,
    I bought a set of ActiveX controls provided with a installation routine.
    Using those controls within LabView after installing them were no
    problem, but for distribution purpose I have to install those ActiveX
    controls manually.
    So I tried to do it on a separate computer by registering the ActiveX
    controls with regsvr32 [regsvr32 ]. But the attempt to
    start a LabView program where these controls were embedded ended with
    the error message "error opening document" (ole_lv5container) and "error
    510 occurred while loading ActiveX control ..."
    I'm working with Windows NT 4.0 and LabView 5.0f2.
    Does anyone know, what I made wrong?
    Bye, Alexander
    Sent via Deja.com http://www.deja.com/
    Before you
    buy.

    Hello all,
    I bought a set of ActiveX controls provided with a installation routine.
    Using those controls within LabView after installing them were no
    problem, but for distribution purpose I have to install those ActiveX
    controls manually.
    So I tried to do it on a separate computer by registering the ActiveX
    controls with regsvr32 [regsvr32 ]. But the attempt to
    start a LabView program where these controls were embedded ended with
    the error message "error opening document" (ole_lv5container) and "error
    510 occurred while loading ActiveX control ..."
    I'm working with Windows NT 4.0 and LabView 5.0f2.
    Does anyone know, what I made wrong?
    Bye, Alexander
    Sent via Deja.com http://www.deja.com/
    Before you
    buy.

  • Problems with automation open for activex control

    Hi,
    I want to open an ActiveX Control (.ocx-file) with the Automation Open function. This .ocx file was successfully registered by using regsvr32.
    The VI is working fine after using Automation Open and all the contained classes are accessible.
    However, after saving the VI and opening it again the error 2147221164 appears and the program failes - referencing the object new at the Automation Open functions solves the problem, but only till the next reopening of the VI.
    Hope somebody has a solution for this "instability"... 
    Sorry for bothering and thanks for any help!!!

    Hi smercurio_fc,
    originally i had a dll written in c++ which contained classes - i wrapped this in a activex control to have access via labview. Im calling the activex control with the automation open function in same VI in which i am also using property nodes and invoke nodes to have access to the classes and methods...
    But as i told before, it happens that Automation Open fails, when starting the VI again after closing(saving), even so it was working perfectly fine before...
    Thanks for your response... 

  • Color palette problems using Toolbar and ImageList ActiveX Controls

    I'm using Toolbar and ImageList ActiveX controls to implement toolbar functionality in a top-level VI.
    I designed the icons used in the toolbar with a 256 color palette. When I initially added the icon images to the ImageList control and ran the VI, the icons were properly displayed in the toolbar, as expected. After saving VI, exiting LabVIEW, and reloading, it appears that a different palette has been applied to the images in the ImageList control. I'm attaching a screenshot of the problem as well.
    Has anyone encountered this type of problem before? Any suggestions you provide will be greatly appreciated.
    Thanks,
    Zach
    Software Engineer
    OnWafer Technologies, Inc.
    www.onwafer.com
    Attachments:
    icon.zip ‏3 KB

    I'm using Toolbar and ImageList ActiveX controls to implement toolbar functionality in a top-level VI.
    I designed the icons used in the toolbar with a 256 color palette. When I initially added the icon images to the ImageList control and ran the VI, the icons were properly displayed in the toolbar, as expected. After saving VI, exiting LabVIEW, and reloading, it appears that a different palette has been applied to the images in the ImageList control. I'm attaching a screenshot of the problem as well.
    Has anyone encountered this type of problem before? Any suggestions you provide will be greatly appreciated.
    Thanks,
    Zach
    Software Engineer
    OnWafer Technologies, Inc.
    www.onwafer.com
    Attachments:
    icon.zip ‏3 KB

Maybe you are looking for

  • Overwriting a PDF file that is open on another computer

    Hi! Instead of a intranet, we decided to post a PDF file via network mapping to keep the staff updated on the latest news. We use a mapped network folder as source for the documents, and one document with links so the staff can navigate to relevant i

  • Problem with disc 2?

    i just got my G4. installing disc 1 of tiger went fine. then at the end of installation for disc 2 it says there were errors and i have to reinsert the disc. then the cycle starts over and over again. i'm unable to restart my computer or quit the ins

  • How to turn off display of Sidebar by default in OS 10.8.5 finder?

    How do I turn off display of Sidebar by default in ALL OS 10.8.5 finder windows?

  • I need to Restore my IPad 2 (with iOS7)

    I need to Restore my IPad 2 (with iOS7) but cannot do so as there is no password for my old AppleID to which this IPad has previously been registered. I am prompted for the password when trying to turn off 'Find my IPad' which is necessary in order t

  • Installation troubles....Any advice?

    I have done a complete installation of iTunes along with Quicktime and after I received the confirmation that it has downloaded successfully, I restart my computer. After it has rebooted, I double click on the iTunes icon on my window, and it does no