Reader in IE9 64 bit?

I have no problem using Reader in IE 9 32 bit browser, but it will not install in the 64 bit version.  When using the 64 bit version, any click on a .pdf in IE9 just makes the cursor blink.  Using Manage Add-Ons, Reader does not appear.  I ran repair on reader 9.3, installed 9.4 and run repair on 9.4, still no success in getting the add-on identified in the 64 bit browser.  I can't find anywhere on the MS site on how to install or force an add-on to be recognized, although I can delete or disable one that has been installed.  Has anybody been successful at getting Reader in a 64 bit browser?

Please post questions or problem regarding beta software in the beta forum; that is what beta software is for - to get feedback to the developers.

Similar Messages

  • Does Adobe Reader support 64-bit IE versions?

    When opening a pdf from 64 bit IE, the links in the pdf document don't work. I've had to use the 32 bit IE 9 client and then the links work fine.  Is there any way getting around having to use two versions of IE?

    Hi Michael -
    I agree, there isn't much benefit to the 64-bit client, but one distinct advantage could be speed.  Since 64 bit clients typically don't run with add-ons (because most add-ons are 32-bit), the browser loads faster and runs a little quicker.  But to me, that is not enough to switch from 32-bit.  The reason I primarily care is I support external customers at a 3rd level, and I'm starting to see more and more of this where there default client is th 64-bit IE and not 32-bit.  Trying to convince most users to just use 32-bit is pretty easy, but there are always a handful that want the latest and greatest and they have a hard time understanding that it just will not work for them in a lot of situations.  Thanks for the quick reply!

  • Installation of Acrobat reader in 64 bit OS

    Primo PDF is not working post installtion of Acrobat reader ver 9 in 64 bit OS

    Reader (It hasn't been called Acrobat since 2005) is a 32 bit app. If Primo PDF is 64 bit (I wouldn't have a clue because I don't use Primo) it probably won't interface with Reader unless it has WOW64 elements built in.

  • How to read char() for bit data DB2's type in Oracle?

    Hello,
    I am developing an application (from JDeveloper) to operate with two data base. In one hand threre is Oracle and in the other one DB2 (AS400).
    I am trying to read a DB2'sfield with the "char() for bit data" type from Oracle, but I can't read it.
    I have trying:
    rset.getObject(1) -->[B@1a786c3
    rset.getBinaryStream(1) --> java.io.ByteArrayInputStream@1a786c3
    rset.getAsciiStream(1) --> java.io.ByteArrayInputStream@2bb514
    rset.getCharacterStream(1) -->java.io.StringReader@1a786c3
    Do you have any solution to see the value of this type of field?
    Thank you and regards

    I have to synchronize unidirectionally from the Oracle database to DB2. And I'd like to save the information of the record of DB2 prior to the update operation.
    And here is where the problem arises for me, because when I try to read from Java with the connection established on DB2 is unable to interpret the information. While there are no problems from Oracle to consume the information, it happens that DB2 field types are not common with Oracle, such as char () for bit data. From what I could find the equivalent in Oracle would be raw (), but since Java is possible to read this type of information... And this is my doubt, it is necessary to do any type of cast or to do a special view to retrieve this information?

  • Read/Write a bit in a Modbus Address

    Greetings,
    I'm working on a project for a customer of mine. I'm working off of his I/O mapping list. We are using MODBUS to communicate to a Motorola MOSCAD FIU. According to the I/O Map, I need to read a bit from address 307682:01 which normal I would translate into 307682.1 but Lookout is not excepting this address as a valid Data Member. So I did some troubleshooting of my own and found that Modbus Data member (307682) is only used as "a 6-digit addresses of 16 bit input registers encoded as unsigned binary integers ranging from 0 - 65535." I guess an analog value.
    Is my thought process correct on this? Does my customer need to change his I/O mapping. Am I overlooking something?
    Attached is a copy of the I/
    O map.
    Oliver Scheurer
    Aegis Solutions, Inc.
    2660-T Yonkers Road
    Raleigh, NC 27604
    Phone: (919) 861-0103 Ext. 231
    Fax: (919) 861-0104
    www.aegis-solutions.com
    Attachments:
    IO_Map_for_lookout.xls ‏69 KB

    WOW!!.. I get to answer my own question. You all are slow... J/K...
    Anyway, the fine people at NI Tech Support Helped me out with this one. Seems that it is a problem related to Lookout and Modbus. After discussing this problem with a few engineers, I decided to call the customer and let him know of his mistake. Well, he proceeded to tell me that "Wonderware can do it with out a problem". So I called NI Support again, and they told me that further research showed that it is something that was not put into Lookout. The Support engineer started a "CARD?". But he also gave me a work around.
    1. create an expression
    2, enter getbit(3,1)
    This expression will return a ON status since the number 3 in binary is 1 1 and looking at the first bit is 1.
    So for my
    application I would use
    getbit(modbus1.307682,1)
    I hope this makes sense.
    Oliver Scheurer
    Aegis Solutions, Inc.
    2660-T Yonkers Road
    Raleigh, NC 27604
    Phone: (919) 861-0103 Ext. 231
    Fax: (919) 861-0104
    www.aegis-solutions.com

  • CheckBox reader and other bits

    Hi
    I'm a perl srcipter so I get the basics of programming even if I've got the java terminology wrong. I have a table with 4 rows 5 columns, I want to draw each row as a line on a graph and I want to be able to control which row(s) are displayed with checkboxes. The code below compiles as it stands so hopefully you can see what I'm trying to do. I have the following issues which I've been unable to sort and hope someone will point me the right way.
    Reading the checkbox events. My plan was for a boolean array (checkBoxSetting[]) which recorded true/false for each line on the graph then I could print 'if true'. Do I need to somehow call the 'itemStateChanged' method (line 7 from within the arrayExp() method (line 112)? Do I need the block commented out at lines 60-65 and if so what causes the error "addItemListener(java.awt.event.ItemListener) in javax.swing.AbstractButton cannot be applied to (arrayExp)"? Am I any where close to getting this working?
    Other problems...
    Line 124 I changed from grid layout to box layout so I don't think I sould need this line but if I comment it out I get a very small panel with nothing on it. So what should I put insead?
    Line 163 I need to scale the data by dividing the height of the y axis by the highest data value. With the test data that should be 200/400 = 0.5 but whatever I define scale as (double, float, int) I get zero as the result? (thus it's currently over written on line 164)
    I find testing as an application easyer so I plan to convert this to an applet once I've got it working. Is that a bad plan, should I just make it into an applet now the worry about functionality later?
    Any help on the above problems would be appreciated and if you want to advise on other glaring errors in my structure please do. Thanks Annie
      * 1.1 version.
    import java.awt.*;
    import java.awt.event.*;
    import java.lang.Math;
    import java.net.*;
    import java.io.*;
    import java.util.*;
    import javax.swing.*;
    public class arrayExp extends Frame
                            implements ActionListener {
         boolean inAnApplet = true;
         JCheckBox ATButton;
         JCheckBox CdButton;
         JCheckBox CuButton;
         JCheckBox PAHButton;
         boolean[] checkBoxSetting = {true,true,true,true};
         public static void main(String[] args) {
              arrayExp window = new arrayExp();
              window.inAnApplet = false;
              window.setTitle("expressions");
              window.pack();
              window.setVisible(true);
         public void actionPerformed(ActionEvent event) {
              //The only action event we get is when the
              //user requests we bring up a FileDialog.
              FileDialog fd = new FileDialog(this, "FileDialog");
              fd.setVisible(true);
         public JPanel CheckBoxPanel() {
              //Create the check boxes.
              ATButton = new JCheckBox("AT");
              ATButton.setMnemonic(KeyEvent.VK_C);
              ATButton.setSelected(true);
              checkBoxSetting[0]=true;
              CdButton = new JCheckBox("Cd");
              CdButton.setMnemonic(KeyEvent.VK_G);
              CdButton.setSelected(true);
              checkBoxSetting[1]=true;
              CuButton = new JCheckBox("Cu");
              CuButton.setMnemonic(KeyEvent.VK_H);
              CuButton.setSelected(true);
              checkBoxSetting[2]=true;
              PAHButton = new JCheckBox("PAH");
              PAHButton.setMnemonic(KeyEvent.VK_T);
              PAHButton.setSelected(true);
              checkBoxSetting[3]=true;
    /*          //Register a listener for the check boxes.
              ATButton.addItemListener(this);
              CdButton.addItemListener(this);
              CuButton.addItemListener(this);
              PAHButton.addItemListener(this);
              JPanel p = new JPanel();
              p.setLayout(new GridLayout(4,1));
              p.add(ATButton);
              p.add(CdButton);
              p.add(CuButton);
              p.add(PAHButton);
              return (p);
    // add a checkbox listener
         public void itemStateChanged(ItemEvent event) {
              char c = '-';
              Object source = event.getItemSelectable();
              if (source == ATButton) {
                   checkBoxSetting[0] = false;
                   c = 'T';
                   System.out.println("CheckBox "+c);
              else if (source == CdButton) {
                   checkBoxSetting[1] = false;
                   c = 'd';
                   System.out.println("CheckBox "+c);
              else if (source == CuButton) {
                   checkBoxSetting[2] = false;
                   c = 'u';
                   System.out.println("CheckBox "+c);
              else if (source == PAHButton) {
                   checkBoxSetting[3] = false;
                   c = 'H';
                   System.out.println("CheckBox "+c);
              //Now that we know which button was pushed, find out
              //whether it was selected or deselected.
              if (event.getStateChange() == ItemEvent.DESELECTED) {
                   System.out.println("CheckBox "+c);
                   c = '-';
              repaint();
         public arrayExp() {
              Panel canvasPanel = new Panel();
              JPanel cbp = CheckBoxPanel();
              setLayout(new BorderLayout());
              //layout area as boxes left to right
              canvasPanel.setLayout(new BoxLayout(canvasPanel, BoxLayout.LINE_AXIS));
              //Put a graph (MyCanvas) in the first box.
              canvasPanel.add(new MyCanvas());
              //Put checkboxes in the right box.
              canvasPanel.add(cbp);
              add("East", canvasPanel);  //why do I need this when I changed to a box layout?
              addWindowListener(new WindowAdapter() {
                   public void windowClosing(WindowEvent event) {
                        if (inAnApplet) {dispose();}
                        else {System.exit(0);}
    }//----------------end class arrayExp
    //paint the graph on a canvas.
    class MyCanvas extends Canvas {
         public void paint(Graphics g) {
              System.out.println("Paint");
              //tempory array of expression levels for four treatments X 5 exposures
              //to be read from database in future
              int[][] expLevels =      {  {0, 50, 120, 200, 200},
                                                 {20, 200, 100, 300, 200},
                                                 {100, 100, 100, 400, 200},
                                                 {0, 150, 200, 150, 0}  };
              //find max expression to scale y axis
              int max=0;
              for (int i=0; i<4; i++) {
                   for (int j=0; j<5; j++){
                        if (expLevels[i][j]>max) {max=expLevels[i][j];}
              //origin (form top left x right, y down)
    //      int w = getSize().width;
    //      int h = getSize().height;
              int originX=50;
              int step=100;  //distance between exposures on x axis
              int height=200;
              int originY=height+originX;
              double scale=height/max;
              scale=0.5;
              g.drawString("height"+height+"/ max"+max+" = scale"+scale, 0, originY+60);
              //set up an array of 5 colours
              Color[] EColor = new Color[5];
              EColor[0]= new Color(200,0,255); //magenta
              EColor[1]= new Color(0,0,255);      //green
              EColor[2]= new Color(0,255,0);      //blue
              EColor[3]= new Color(230,230,0); //yellow
              //draw axis
              g.setColor(Color.black);
              g.drawLine(originX, originX, originX, originY);
              g.drawLine(originX, originY, originX+(step*4), originY);
              //lable x axis
              g.drawString("LC0", originX, originY+20);
              g.drawString("LC12.5", originX+step, originY+20);
              g.drawString("LC25", originX+(step*2), originY+20);
              g.drawString("LC37.5", originX+(step*3), originY+20);
              g.drawString("LC50", originX+(step*4), originY+20);
              g.drawString("Exposure", originX+(step*2), originY+40);
              //lable y axis
              int xs=originX; int ys=originY; int zs=(int)((max/height)*0.25);
    //          g.drawString("x"+xs+" y"+ys+" zs"+zs+" max"+max+" scale"+scale, 0, originY+60);
              g.drawString("0", originX-15, originY);
              g.drawString(""+(int)(max*scale*0.25), originX-20, originY- (int) (max*scale*0.25));//400*.5=200*.25=50
              g.drawString(""+(int)(max*scale*0.50), originX-20, originY- (int) (max*scale*0.5));
              g.drawString(""+(int)(max*scale*0.75), originX-20, originY- (int) (max*scale*0.75));
              g.drawString(""+max, originX-20, originY- (int) (max*scale));
              g.drawString("Expression", originX-100, originY-(int)(height*0.5));
              int x=originX; int y;
              for (int i=0; i<4; i++) {
    //               if (checkBoxSetting) {
                        g.setColor(EColor[i]);
                        for (int j=0; j<4; j++){
                             y=j+1;
                             g.drawLine(x,originY-(int)(expLevels[i][j]*scale), x+step, originY-(int)(expLevels[i][y]*scale));
                             x=x+step;
                        x=originX;
         //If we don't specify this, the canvas might not show up at all
         //(depending on the layout manager).
         public Dimension getMinimumSize() {return new Dimension(550,300);}
         //If we don't specify this, the canvas might not show up at all
         //(depending on the layout manager).
         public Dimension getPreferredSize() {return getMinimumSize();}
    }//end-------------class MyCanvas

    To address some of your questions:
    Do I need the block commented out at lines 60-65 and if so what causes the error
    "addItemListener(java.awt.event.ItemListener) in javax.swing.AbstractButton cannot be applied
    to (arrayExp)"?Uncommenting that block would seem reasonable. However, you then have to make arrayExp implement ItemListener and provide an itemStateChanged(ItemEvent) method.
    Note that this advice only applies while you're learning. For production-quality code I wouldn't have a component also be a listener, but I'd use an (anonymous, generally) inner class.
    Line 163 I need to scale the data by dividing the height of the y axis by the highest data
    value. With the test data that should be 200/400 = 0.5 but whatever I define scale as (double,
    float, int) I get zero as the result?The problem is on the right hand side of the = sign. You're dividing an int by an int, and that performs integer division. The tidiest way of fixing this is to cast the expression after the / to double:           double scale=height/(double)max;Whenever division produces suspicious zeroes that's something to check.
    if you want to advise on other glaring errors in my structure please do.MyCanvas seems to do an awful lot of work in the paint method. All of the bits which set up data should be pulled out, probably into the constructor. (Some people would disagree with me and have an init() method instead. There are pros and cons).

  • Adobe Reader X - 64 Bit Windows 7 compatibility Problem?

    On a 2 mo. old HP computer I recently removed all files related to trial Norton software and installed free AVIRA software. Now, pdf documents cannot be viewed at web sites. AVIRA scan reports two findings; WARNING: unsupported Archive Version AcroRd 32.exe and WARNING: Program File (x86)\Kobo\libzip-Vc9.dll Archive Header is damaged. I do think that there is an incompatibility between 32. exe and the Windows 7 64 bit program but unsure if the second warning is connected. Re downloading Adobe Reader X had not corrected this. My computer knowledge is very weak. What needs to be done? Thank you, WmRM.  

    Nah, this sounds like Norton has damaged your file handlers and messed with your DLLs. The long and short answer is, that you need/ should seriously consider reinstalling your operating system from scratch. Such issues have a way of being sticky like dog pooh and anything you could do without a reinstall is only even more convoluted...
    Mylenium

  • Using adobe reader on 64 bits OS

    We have a WinForms.NET application which runs on DOT NET Framework 4.0. In this application we have few reports that are loaded using PDF Viewer. In places where we use PDF viewer, we use AxInterop.AcroPdfLib and InteropPdfLib Libraries to load the reports. All these reports are working fine on a 32 bit Operating system. But when we run the same application on a 64 bit OS, we are not able access any of our reports.
    While loading the report, the application threw Class not registered error. After researching on this problem, we came to know that AxInterop.AcroPdfLib library will load only on 32 bit compilers.
    We have already tried the scenario of running the application using “X86” compiler option instead of “Any CPU”. By doing so the AxInterop.AcroPdfLib.dll file will load the reports without any error but this solution will not help us with our effort to change the application to 64 bits.
    Thus, we would like to know if there is any AxInterop.AcroPDFLib library which can be used on 64 bits OS? Please let us know solution to this problem.
    P.S. We have investigated your examples from http://www.adobe.com/devnet/acrobat/interapplication_communication.html. While runing the BasicIacOCXCS on 32 bits, AxInterop.AcroPdfLib works just fine, but when tring to run the same example on 64 bits, it fails with "the application threw Class not registered error".

    Sorry if I have misinterpreted something in the thread above, but ...
    What ID were you using when you first bought those Kalahari  books (presumably on the old laptop)?
    If it was an anonymous 'not registered with Adobe' ID then you may be stuck (see below).
    Otherwise, you should still be able to read them on the new laptop as long as you use the same ID used when you bought them on the old laptop.
    ~~~
    This is a vicious trap that Adobe lays for unsuspecting customers.
    When you register 'without ID', ADE creates an anonymous/implicit ID with limited powers (eg can't be used to share with other devices).
    Whenever you first load a DRM book, that copy of the book is associated with whatever ID the computer is registered to at the time.
    Any book you load while this anonymous ID is active gets associated with that ID, and can't be read on any other device.
    When you properly register your computer with a real ID, that old anonymous ID is lost.
    Now you don't have any devices that can read the book.

  • Reader NPAPI 32 bit plugin doesn't work in 64 Bit Chrome for Mac

    Good morning -
    I am being told by some Chrome experts that the 32 bit NPAPI plug in for Adobe Reader is not compatible with 64 Bit Chrome on the Mac. Can anyone confirm this? I'm getting consistent problems on all my Macs running Chrome and Reader - when attempting to view PDFs inline in Chrome I get a message saying that I have to open Reader, and accept the EULA to do so; doing that does not change the issue.

    Yea! I'm having the same problem over here!

  • Open Reader in 64-bit browser

    How can I get Reader X or XI to open in a 64-bit browser window?

    You can't.  The Adobe Reader plugin is strictly 32-bit and won't work on a 64-bit browser.

  • Reader for 64 bit Linux

    Why is there not a 64-bit version of Reader for Linux?
    I find this absolutely ridiculous and unexpected from
    a large company like Adobe.
    All new desktop and laptop processors are 64-bit nowadays.
    Nobody would install a 32-bit OS (for x86 ofcourse, but even arm is getting to 64-bits soon...).
    The effort needed to provide an 64-bit version along with a 32-bit one is virtually nonexistent.
    There are people that don't want to or don't need to have two (32 and 64) versions of all their shared libraries or have to cross-compile some of their libraries to support old legacy applications.
    Or is Reader nowadays an old legacy application?
    Come on Adobe give us a break.

    I would like to reiterate Lloyd's question. Especially interested in a .deb for AMD Athalon CPU. Cheers, Sam Ball

  • Reading 16 & 22 bit signed integers using Scan From String

    Last week it was suggested to use Scan from String which is a new tool for me and worked well to be able to read in ans parse strings.
    After parsing the string, I'm having trouble converting the numbers into signed integers. The magnitude of some of the the outputs are unreasonably high then flip to near 0 then back up again.
    Sample String (With spaces added)
    $ 00 FCCE 00F6 3FFA93 0BFE 0C89 0DDB
    Message Format:
    Bytes 3-6 FCCE Heave acceleration bits 15-0 15-bit data, sign extended to 16 bits LSB : 0.001261g Sign “+” when accelerating upward
    Bytes 11-16 3FFA93 FOG Gyro 1 bits 21-0 Bits 22-23 are always zero 22-bit signed data LSB = 97.275 µ˚/s Sign corresponds to MEMS axis
    Sample Data File:
    $00FCCE00F13FFD78100910A811FA
    $00FCDF00F13FFCD3141614C71619
    $00FCD600F33FFD20182118E61A39
    $00FCDA00F73FFB3E1C2D1D051E58
    $00FCDD00F73FFC32203921242278
    $00FCDD00EF3FFDDC244525442697
    The vi and a longer sample data file are uploaded to the ni ftp site. The zip file is named: IMU (9-15-08).zip. (Can't attach files to this message for some reason)
    Any help appreciated.
    Thanks,
    Chris

    Files uploaded to the "incoming" directory cannot be downloaded. That folder is intended to be used for submitting code to NI to investigate bugs and such things, not for forum posts.
    What are you expecting FCCE to be? If the string is made of the characters "F", followed by the character "C", etc. (as opposed to the hex value of F, followed by the hex value of C, etc), then you can simply use Hexadecimal String to Number. Otherwise you need to use Type Cast.
    Attachments:
    Example_VI.png ‏5 KB

  • HT1695 I know nothing about how to use my new ipod and when reading the little bit of information in the folder that came with it, all I can do is turn it on, but it just powers down after a few seconds.  How do I work this thing?

    I know nothing about how to use my new ipod and when reading the little information that came with it, all I can do is turn it on.  Then in a few seconds it goes black, never having brought up a screen to do anything!  Help!  What do I do to get this thing going?

    You might consider connecting it to the charger and charging up the battery overnight.
    Please Get the iPod Touch User Manual for iOS 5

  • Adobe Reader XI, IE9(32bit), Windows7(System Type: 32bit), pdf file is shown abnoramlly in browser

    When we open the pdf file directly in browser page on our site, it's shown like this, the content area is limited on top of the web page. But if we enable the compatibility view of this site, everything becomes normal. 
    Any resolution to make it work without enabling the compatibility view? Thanks

    Sorry, the URL we are using is for our application, which is not public.  We finally found out the reason is that, when opening the pdf file in the IE browser, the "div" value in the jsp file becomes null, instead of 100%, that's why the pdf file is not open in 100% mode.
    We fixed it by specify the value "100%" to div in our jsp explicitly, and then the pdf can be viewed correctly.
    Therefore, it should not be a PDF problem...
    Thanks all the same!

  • Adobe Reader support for 64-bit Ubuntu systems

    Any attempt to install any current version of Adobe Reader fails...
    Usually with a "Wrong Architure - I386" message.
    if you try to follow the "new" intructions for using apt-get you get the following...
    sudo apt-get install acroread
    Reading package lists... Done
    Building dependency tree      
    Reading state information... Done
    Package acroread is not available, but is referred to by another package.
    This may mean that the package is missing, has been obsoleted, or
    is only available from another source
    E: Package acroread has no installation candidate
    Two questions:
    1.) Does Adobe have any intensions on supporting 64-bit Linux?
    2.) Does anybody have any suggestions on how to get the reader to work on a 64-bit system?

    Adobe Reader is 32-bit only, and so is the plugin.  This may change some time in the future, but for now it's 32-bit.

Maybe you are looking for

  • How to default the MEAN delivery number for a user ?

    Hello Friends, My client want to have XXXX Delivery Address number by default while creating a PR in the delivery address TAB. I have checked for Parameter ID but not available.Then I have tried with some Parameter IDs like ADR,ADN & DELV_ID. But I h

  • How to block facebook on firefox

    Can someone please tell me how to block facebook on Firefox? Windows 7

  • TS2529 how to delete a back up?

    every time I try to sync my Iphone it says it can't because the back file is corrupt, so it then says that I have to delete this back up then re sync my phone. But how do I do this????

  • Editing in Keynote and Pages

    After i upload a file onto icloud, will it automatically upload the latest file if i edit it? Thanks!

  • Using itunes 10

    Using itunes 10 on Windows Vista . Try to burn cd. Seems to work, but the CD will not play on any device. If you put that same disc back into the computer, itunes recognizes it as a blank disc. Tried slowing the burn speed with same result.