Plugin created using C++ 6 and Acrobat 6 SDK Not Working in Windows

I have an Acrobat plugin compiled in Visual C++ 6 using Acrobat 6 SDK. The plugin works flawlessly in Acrobat versions 6 to 9 in Windows XP. While the plugin is able to add a menu iterm and tool bar icon in Windows 7, it causes Acrobat to hang everytime when activated in which event I have to close Acrobat. Since Visual C++ 6 is a 32 bit app, I have to believe that Acrobat 6 SDK is responsible for the behavior described herein in attempting to get the plugin to work in Windows 7. Any comments or suggestions regarding what Visual C++ version to use along with the appropriate Acrobat SDK to get the plugin to work in Windows 7 are appreciated. In doing so, I would also be interested in knowing what backward compatibility one may expect w/regard to previous versions of Acrobat in updating the plugin to work in Windows 7. As for the answer, correct me if I am wrong but I'm thinking Acrobat 9.

Adobe hasn't supported Acrobat 6, VC6 or the Acrobat 6 SDK for at least 5 years.  You will need to move to the Acrobat 9 SDK if you wish support.
And Acrobat 9 and its SDK are fine with Windows 7.
From: Adobe Forums <[email protected]<mailto:[email protected]>>
Reply-To: "[email protected]<mailto:[email protected]>" <[email protected]<mailto:[email protected]>>
Date: Thu, 1 Dec 2011 01:15:42 -0800
To: Leonard Rosenthol
Subject: Re: Plugin created using C++ 6 and Acrobat 6 SDK Not Working in Windows Plugin created using C++ 6 and Acrobat 6 SDK Not Working in Windows
Plugin created using C++ 6 and Acrobat 6 SDK Not Working in Windows
created by gomfp49<http://forums.adobe.com/people/gomfp49> in Acrobat SDK - View the full discussion<http://forums.adobe.com/message/4056529#4056529

Similar Messages

  • How do I activate Acrobat XPro- I've installed CS6 Premium on my new computer and Acrobat does not work and says its not activated. How do I resolve this problem?????

    How do I activate Acrobat XPro- I've installed CS6 Premium on my computer and Acrobat does not work and says its not activated. It is listed on the programs on the computer but will not respond. How do I fix this?????? Help Adobe?????

    Hi t0m#2410,
    How did you install Acrobat, did you install it as a part of Suite installation.
    If it is a part of suite then deactivate suite uninstall Acrobat, Reinstall Acrobat using Suite media. Launch Photoshop first and Activate.
    Then try launch Acrobat.
    Regards,
    Ajlan Huda.

  • I am using laptop hitting and slow system not working

    i am using laptop hitting and slow system not working and very late opan file browser every think . plez help me

    Hi,
    Shut down the notebook.  Tap away at the esc key as you start the notebook to enter the Start-up Menu.  Select the Bios option ( usually f10 ) and under the Advanced or Diagnostic tab you should find the facility to run tests on both the Hard Drive and Memory.  Post back with the details of any error messages.
    Note:  If the option to run these tests is not available in the Bios Menu, use the f2 diagnostic menu instead.
    Can you also post back with the following details.
    1.  The full Model No. and Product No. of your notebook - see Here for a guide on locating this information.
    2.  The full version of the operating system you are using ( ie Windows 7 64bit ).
    Regards,
    DP-K
    ****Click the White thumb to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    ****I don't work for HP****
    Microsoft MVP - Windows Experience

  • PSE13 trial version and it will not work with Windows 7

    I have downloaded PSE13 trial version and it will not work with Windows 7

    I have been using PSE 13 for 3 months with no problems.   When I launch the Editor in PSE 13 this is what I get -
    "Adobe Photoshop cannot run on this computer because this version of Photoshop requires Windows 7 or later"
    RAM 12.0GB
    64 bit operating system
    Intel(R) Core(TM)I7CPU 920 @ 2.67GHz
    Windows 7 SP1
    Hope this helps.
    Lynne

  • I have installed windows 7 on my mac book, but sound card and cam is not working in windows wht to do?, I have installed windows 7 on my mac book, but sound card and cam is not working in windows wht to do?

    I am using Mac book with windows 7. But my sound card and cam is not working when booted through windows. How can I solve this?
    Thanks

    Assuming that you tried to install Win 7 in bootcamp.
    Power on the machine and press and hold the "option" key when you hear the bong sound.
    Select the Macintosh HD icon and press "return" or just click on the icon.
    Once booted into OS X go to System Preferences and select the Startup Disk icon and configure startup to use the Macintosh HD.

  • Palm Desktop 6.2.2. and Lookup function not working in Windows 7

    Palm Desktop's lookup function not working in Windows 7 64bit. Please help.
    Post relates to: Centro (Verizon)
    This question was solved.
    View Solution.

    I was able to solve this by unchecking compatibility mode and setting the application to run as administrative.

  • Hash created using DBMS_CRYPTO.Hash and md5sum, sha1sum not maching.

    Hi,
    I have PL/SQL script MD5SH1.sql to generate md5 and sha1 hash, but hash generated by this script and
    hash generated by md5sum and sha1sum utility not matching.
    Pl. tell me what is wrong,
    ------------------MD5SH1.sql----------------
    set serveroutput on
    DECLARE
    input_string VARCHAR2 (200) := 'Lord of the ring'';
    output_str_md5 VARCHAR2 (200);
    output_str_sh1 VARCHAR2 (200);
    hash_raw_md5 RAW(2000);
    hash_raw_sh1 RAW(2000);
    hash_algo_type1 PLS_INTEGER := DBMS_CRYPTO.HASH_MD5;
    hash_algo_type2 PLS_INTEGER := DBMS_CRYPTO.HASH_SH1;
    BEGIN
    DBMS_OUTPUT.PUT_LINE ( 'Original string: ' || input_string);
    hash_raw_md5 := DBMS_CRYPTO.Hash
    src => UTL_I18N.STRING_TO_RAW (input_string, NULL),
    --src => input_string,
    typ => hash_algo_type1
    hash_raw_sh1 := DBMS_CRYPTO.Hash
    src => UTL_I18N.STRING_TO_RAW (input_string, NULL),
    --src => input_string,
    typ => hash_algo_type2
    output_str_md5 := UTL_I18N.RAW_TO_CHAR (hash_raw_md5,'US7ASCII');
    output_str_sh1 := UTL_I18N.RAW_TO_CHAR (hash_raw_sh1,'US7ASCII');
    --output_str_md5 := hash_raw_md5;
    --output_str_sh1 := hash_raw_sh1;
    --dbms_output.put_line(hash_raw_md5);
    --dbms_output.put_line(rawtohex(hash_raw_sh1));
    DBMS_OUTPUT.PUT_LINE ('MD5 Hash: ' || output_str_md5);
    DBMS_OUTPUT.PUT_LINE ('SH1 Hash: ' || output_str_sh1);
    END;
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    The O/p of this script is
    SYS@mydb> @MD5SH1.sql
    Original string: Lord of the ring
    MD5 Hash: �����+.v�`�a_A
    SH1 Hash:
    ����E�k�[�F[c�2�
    PL/SQL procedure successfully completed.
    SYS@mydb>
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    The o/p of md5sum and sha1sum is
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    [san@sde4 ~]$ echo "Lord of the ring" |md5sum
    f3fbb6dfd8a2d6f8f6aeabc4d6e17c57 -
    [san@sde4 ~]$ echo "Lord of the ring" |sha1sum
    856f6132e23c7e335ca4188bd45c7bc9515f6905 -
    [san@sde4 ~]$
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Why these 2 hashes are not matching?
    -Santosh Mhaskar

    You should take in account, that echo command adds a carriage return by default.
    SQL> set serveroutput on
    SQL> set echo on
    SQL> declare
      2    input_string       varchar2(200) := 'Lord of the ring'||chr(10);
      3    output_str_md5  varchar2(200);
      4    output_str_sh1  varchar2(200);
      5    hash_raw_md5       raw(2000);
      6    hash_raw_sh1       raw(2000);
      7    hash_algo_type1 pls_integer := dbms_crypto.hash_md5;
      8    hash_algo_type2 pls_integer := dbms_crypto.hash_sh1;
      9
    10  begin
    11    dbms_output.put_line('Original string: ' || input_string);
    12    hash_raw_md5      := dbms_crypto.hash(src => utl_raw.cast_to_raw(input_string),
    13                                       typ => hash_algo_type1);
    14    hash_raw_sh1      := dbms_crypto.hash(src => utl_raw.cast_to_raw(input_string),
    15                                       typ => hash_algo_type2);
    16    dbms_output.put_line('MD5 Hash: ' || lower(rawtohex(hash_raw_md5)));
    17    dbms_output.put_line('SH1 Hash: ' || lower(rawtohex(hash_raw_sh1)));
    18  end;
    19  /
    Original string: Lord of the ring
    MD5 Hash: f3fbb6dfd8a2d6f8f6aeabc4d6e17c57
    SH1 Hash: 856f6132e23c7e335ca4188bd45c7bc9515f6905
    PL/SQL procedure successfully completed.
    SQL> !echo "MD5 Hash:" `echo 'Lord of the ring' | md5sum`
    MD5 Hash: f3fbb6dfd8a2d6f8f6aeabc4d6e17c57 -
    SQL> !echo "SH1 Hash:" `echo 'Lord of the ring' | sha1sum`
    SH1 Hash: 856f6132e23c7e335ca4188bd45c7bc9515f6905 -Best regards
    Maxim

  • Ichat is not working.  tried using port 443 and still does not work

    ichat not working.  tried using port 443 and i stay on for about 45 seconds then it disconnects.  Can you help?

    HI,
    Can you tell me the make and model of your routing device.
    The 10 Second error message is caused by a break in the connection.
    This could be the Wifi being dropped (if you are using WiFi) due to interference from other nearby routers.
    It can be dues to setting or features of the router and if the experience has changed that could be due to a speed increase in your internet service.
    If you are using Ethernet and having this issue it is much more likely to be a setting/feature issue.
    Examples.
    Netgears.  These have a separate WAN set up page that lists either DoS or SPI as one of the things that can be Enabled or Disabled.
    Linksys.  If your model has a Security tab and this has  Firewall then DoS and SPI are port of this.
    Netopia devices Tend to have a 4 level Firewall which DoS and SPI are part of the two highest settings.
    DoS = Denial Of Service and is a Threshold based "Protection" Feature.
    it judges whether too much data is being sent to you  (it was designed originally to stop people overloading Web Servers (many people, many refreshes).
    iChat can outstrip the setting with most Internet Connections in most part of the world.  (In fact iChat can send more data than most Video Streaming sites)
    One thing you can do that may get around this is to reduce the Bandwidth used in iChat (iChat Menu > Preferences > Video Section > Bandwidth Limit drop down)
    Try 500kbps
    10:07 PM      Wednesday; November 23, 2011
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Lion 10.7.2)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • Wifi and ethernet are not working in windows xp.

    Hi I had to reformat my computer so I installed leopard 10.5 on it and then installed xp via bootcamp before updating to 10.5.6. WHen Im in windows xp It wont recongize my ethernet or wifi and I can not either to work by going to control panel I mean the icons are not even showing up. I cant update windows or anything since it has no internet.
    Macbook pro 2.4ghz
    4gb ram
    Prior generations but dosnt have the new keyboard.

    shamu3 wrote:
    Im so stuiped thank you very much.
    Not to see the wood for the trees...
    Glad to be of help.
    Have Fun
    Stefan

  • StageWebView and Acrobat Reader Not Working

    Hi,
    I started noticing this back in AIR 3.6. It seems that now when using StageWebView to display a pdf file, it just opens a blank window and no longer loads the adobe reader plugin to display the pdf. Has anyone else seen this?
    thx

    Hi Keith,
    It sounds like this might be a bug.  Would you mind entering it over at bugbase.adobe.com?  Please post back with the bug number once you get it and I'll follow up internally.  By the way, what platform were you on?
    Thanks,
    Chris

  • HT204053 I tried to use a card and it will not work for my App Store

    I tried to put a different card on file but it won't let me

    By not letting you, you mean ... ?
    If you are trying to use a debit card then I don't think that they are still accepted as a valid payment method - they are not listed on this page and there have been a number of posts recently about them being declined
    If it's a credit card then is it registered to exactly the same name and address (including format and spacing etc) that you have on your iTunes account, it was issued by a bank in your country and you are currently in that country ? If it is and it's being declined then you could check with the card issuer to see if it's them that are declining it, and if not then try contacting iTunes support and see if they know why it's being declined : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Account Management
    If it's something else then some info as to what happens and when would be useful.

  • JDeveloper 11g Using EJB, JPA AND ADF DOES NOT WORK IN VERSION 11.1.1.1.0

    Hi all,
    I'm facing serious problems after the migration from jdev 11.1.1.0 version to new release 11.1.1.1.0, as i published with a sample at
    Problems with create new record o in JDev 11 R1
    is this a big bug in the ide? Should i return to previous version?
    Thanks in advance
    Enrique

    Hi,
    my best recommendation is to work with customer supports in this testcase.
    Frank

  • Sound and mouse scrolling not working in windows 8

    I installed windows 8 on my Imac (late 2011). I have managed to solve most of the compatability issues but the three I have left are No Sound (I really need this), scroll wheels dont work on any mouse (nor does the touch functions of the magic mouse), and the facetime camera doesn't work. If you could help me solve any of these issues it would be excellent. Also yes I am aware that apple will eventually release drivers for windows 8 but I need it now, so don't tell me to wait. Thanks in advance for any help you can give!

    cyclonestoney wrote:
    I installed windows 8 on my Imac (late 2011). I have managed to solve most of the compatability issues but the three I have left are No Sound (I really need this), scroll wheels dont work on any mouse (nor does the touch functions of the magic mouse), and the facetime camera doesn't work. If you could help me solve any of these issues it would be excellent. Also yes I am aware that apple will eventually release drivers for windows 8 but I need it now, so don't tell me to wait. Thanks in advance for any help you can give!
    Wait. Or, remove Windows 8 and install Windows 7. Or, install Windows 8 using Parallels or Fusion rather than using Bootcamp Assistant.

  • Outlook Calender and iphone sync not working properly (windows 7 os)

    I try to sync through itunes and contacts work fine, but the calender only comes through partially. Single events work fine, but events (on outlook) which extend more than a day are completely ignored by itunes sync and don't show up on the iphone calender.
    Any ideas?
    Thanks.

    Alright... I think I have worked this out.
    Clearing history alone was not enough. I had to clear the history THEN reboot the phone.  My events seem to be coming though now. Interesting though... on events coming from iphone to outlook the right click mouse menu is disabled. If I want to delete, edit or alter that event in outlook I have to left click and actually open it.

  • Actions and Advanced Actions not working correctly. - Captivate 8

    In our project, we have it set so that after every section the student is asked three quiz questions (they are set on the default quiz slides.) On success, the person jumps to the next question slide. On failure, the person goes to next slide which has two buttons - one that allows them to simply move forward to the next quiz question and one that allows them to go back and review. The "Go back and Review" button takes the person back to the specific content slide that contains the answer to the question they are being asked. This button is set to advanced actions "Jump to Slide ..." and "Show Button..." - The button is a 'Return to Quiz' button to allows the person to find the answer then try the question again.  I know that the buttons on the default quiz slides cannot be programmed to do a specific action, but every time we click 'Submit' it seems fine until we click 'Next' to move ahead, it then routes us back to one of the content slides (Slide 7) instead of the next slide (if wrong), or the next question slide (if right). I have looked at the Advanced Interactions Window and there is nothing linking this slide to anything. I have not had this problem with any of our other modules or sections. I have tried creating new question slides and it did not work. I deleted Slide 7 and it worked fine the first time through the preview, but then when I viewed the preview again, it started jumping back and would not even let me get to the questions. Can anyone help?

    Normally the Next button on a question slide is not needed, because it has the functionality of Skipping the question. It is however needed if you want to allow Review.
    Another explanation is that you did change the normal work flow for a question slide, where a two-step process for submitting will take automatically the user to the next slide.
    Question Question Slides in Captivate - Captivate blog
    What did you do to need the Next button? If the user submits:
    Feedback appears with the indication to press Y or to click on the slide, happens at the pausing point of the Question slide (default is 1.5secs)
    When user presses Y or clicks, the actions Success/Last Attempt are executed if all attempts are exhausted, and you have only 1 attempt on Question level: the actions are by default Continue, but you can change it to 'Go to Next Slide' to shorten the waiting time (or drag the pausing point closer to the end of the slide).
    What did you change?

Maybe you are looking for

  • Created a project in Motion, cannot open the file in FCP

    I posted this on the FCP forum as well. Would appreciate any help. Hello. My first time trying to create something with Motion. I created the text animation and then when I go to import a file into FCP I get an error message: File Error: 1 file(s) re

  • Ordered Canceled without being informed or with any reason?

    I ordered a Lenovo y40 about 11 days ago with the belief that it would be shippeed in 10-12 days. Today, when checking order status, I learnt that my order had been cancel 5 days ago, but was not given a reason why, or notified when it had happened.

  • 17 inch MBP Loose screen verdict

    Today I exchanged my 15' MBP with a 17'. I love it! No Whine, and heat is very reasonable. The biggest problem I have is the loose display hinge! I know a lot of people are talking about this, but I really need to know, hopefully from someone at Appl

  • Download PS Lightroom 4.0 & Premiere Elements 11

    Together with my new Canon EOS 6 I got licenz for these 2 programms but there is no download link any more.

  • Urgent ,,,, Query help

    Hi , Oracle version : 9i Table reference : Hr.Employees Query: Thanks .. Regards Rahul Edited by: Mac_Freak_Rahul on Oct 25, 2010 12:12 PM