CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 5 of 5
  1. #1
    Join Date
    Jan 2003
    Location
    Bangalore, INDIA
    Posts
    180

    Question mark in Debug point

    Hi guys

    Debug point in my code shows a question mark and execution does not halt where expected. I have looked for solutions in various places, but no luck yet.

    Here are some of the settings in my environment.

    Solution Configuration = set to "Debug"
    Generate Debugging Information = True
    Enable Unmanaged Debugging = False (tried with True too)

    Any help would be highly appreciated.

    Regards

    Suhaib

    (I have asked this very question in the .Net Framework forum too. Sorry if this is not acceptable)

  2. #2
    Join Date
    May 2000
    Location
    KY, USA
    Posts
    18,652

    Re: Question mark in Debug point

    Quote Originally Posted by suhaib
    (I have asked this very question in the .Net Framework forum too. Sorry if this is not acceptable)
    Unfortunately, this cross-posting is against the rules of the Acceptable Use Policy. Thus, I have removed the second post. Please choose always the forum that is appropriate for the corrersponding question.

    Thank you very much. Have fun with the forums.

  3. #3
    Andy Tacker is offline More than "Just Another Member"
    Join Date
    Jun 2001
    Location
    55°50' N 37°39' E
    Posts
    1,503

    Re: Question mark in Debug point

    which version of Studio are you using?
    If you think you CAN, you can, If you think you CAN'T, you are probably right.

    Have some nice Idea to share? Write an Article Online or Email to us and You may WIN a Technical Book from CG.

  4. #4
    Join Date
    Dec 2003
    Location
    http://map.search.ch/zuerich.en.html
    Posts
    1,074

    Re: Question mark in Debug point

    The question mark means the debug point is not going to be activated during the current execution.

    This is most likely because Visual Studio is out of sync with your DLL/assembly.

    If rebuilding the solution does not work, try deleting all the bin directories in your solution. This is safe to do because it does not affect your source code.
    Last edited by Norfy; March 28th, 2005 at 11:33 AM.
    Useful? Then click on (Rate This Post) at the top of this post.

  5. #5
    Andy Tacker is offline More than "Just Another Member"
    Join Date
    Jun 2001
    Location
    55°50' N 37°39' E
    Posts
    1,503

    Re: Question mark in Debug point

    Norfy,
    sometimes in project configuration - Debug options - "Optimize code" Flag disables debugging process.

    in VS2K5 - there is a new debugging option called - Just My Code which simply disables debugging the native code.
    If you think you CAN, you can, If you think you CAN'T, you are probably right.

    Have some nice Idea to share? Write an Article Online or Email to us and You may WIN a Technical Book from CG.

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