Acrobat .exe Throws Error

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

  1. #1

    Default Acrobat .exe Throws Error

    Hi All,

    When the below lines of codes are executed, Acrobat.exe throws an
    exception

    char handlerName[255] = {0};
    memcpy( handlerNameChar, tmp, strlen( tmp ) + 1 );
    handlerNameChar[ strlen( tmp ) + 1 ] = NULL;/*Exception throws here*/

    The error in Acrobat is throws as "0x00005"

    Can you tell me why this exception occurs?
    Note:These doesnot happen when the same piece of code is executed using
    Acrobat 7.0 or 8.0

    Regards,
    Nethaji
    Nethaji@adobeforums.com Guest

  2. Similar Questions and Discussions

    1. While Closing the Timestamp doc Acrobat9.0 throws error
      Hi, Thru my application I open a PDF document which has Amano Timestamp. Problem is whenever I close Timestamp document its throwing an error...
    2. First request to application throws 500 error
      We're on an Windows 2003 box with IIS. After the app is inactive for awhile users will get a 500 error but if they request the same page again, it...
    3. CFStat throws NoClassDef error under Linux
      I noticed a while back that my Linux (RH 9) gnome services admininstrator (not CF Server Administrator) had an error, and so did not correctly...
    4. tooltip throws actionscript error in cftree
      The screen read " Illegal usage of actionscript" for a <cftree> in a flash form. The only action script I use in any form element is GetURL....
    5. including AS file throws an error...
      Hi All I created an AS file in the same directory as my movie. Inside my movie, I do this: #include "MyClass"
  3. #2

    Default Re: Acrobat .exe Throws Error

    Your code is incomplete in that it doesn't show what tmp is or how long? Perhaps it's longer than 255.

    Also, the syntax your are using for initializing handlerName is not proper C/c++.
    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