CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Mar 2007
    Posts
    1

    Resolved Regarding c++ & Just-In-Time Debugging

    I have done a program in c++,but when i am trying to run the program it is giving 2 different errors:

    1.No installed debugger has just-in-time debugging time enabled.In visual Studio,Just-In-Time debugging can be enabld from Tools/Options/Debugging/Just-In-Time.
    Check the documentation index for 'Just-In-Time debugging,errors' for more information.


    2.An unhandled win32 exception occured
    just in time debugging this exception failed with the following error:
    no installed debugger has just-in-time debugging enabled.

  2. #2
    Join Date
    Feb 2003
    Location
    California
    Posts
    334

    Re: Regarding c++ & Just-In-Time Debugging

    Just-in-time debugging is only used to attach to an already running process. You can debug your program by just running the process in the debugger directly.

    Do you have VS? If not, and you are looking for a debugger, you can use WinDbg:

    http://www.microsoft.com/whdc/devtoo...g/default.mspx
    Henri Hein
    Principal Engineer, Propel
    Do not credit Propel with my views or opinions.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured