I was about to agree that this question is almost completely incomprehensible, and the error message which Windows gives you is also nearly incomprehensible. How to ask questions the smart way.

Then I used Google.

The number 0xC0000008 is a fault which indicates INVALID_HANDLE. Usually that means that some code called an API with a value that was not valid for that API.

The address is *usually* completely useless without a .MAP file from the compiler and linker. However, the address seemed pretty high (0x77......) where the DLLs are often loaded, so on a hunch, I searched for that too.

I was surprised to find a link. It was on another forum, and the particular fault was happening because someone was mixing Debug-build DLLs with Release-build EXEs. They don't mix. They do memory management differently.

If this is of use, remember to Google first, and ask the appropriate people later. If this isn't of use, then really really really try to isolate the problem more, and show you've done real investigation, before asking for help. Every scrap of data may be the clue you need.

--
[ e d @ h a l l e y . c c ]


In reply to Re: Exception error by halley
in thread Exception error by tbabu

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.