How do I disable ‘Just My Code‘ in Visual Basic 2005 Express?
It is supposed to be in menu Tools -> Options -> Debugging -> Enable Just My Code, but I can’t find it.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
This option is not available in Visual Studio itself for most Express editions (it is in Visual C# 2010 Express, though). For instance, in Visual Studio 2008 the options dialog is:
But in the Express edition, Visual Basic 2005 Express, “Debugging” is not available – only 4 of the 12 are:
However, the ‘Just My Code’ setting can be changed through the settings file,
CurrentSettings.vssettings:CurrentSettings.vssettings(see below)<PropertyValue name="JustMyCode">1</PropertyValue>with<PropertyValue name="JustMyCode">0</PropertyValue>.JustMyCodeOff_CurrentSettings.vssettings.JustMyCodeOff_CurrentSettings.vssettings.Note that the line in the settings file containing “Just My Code” is extremely long, more than 200,000 characters, and not all text editors are able to handle it. The safe option may be to use a hex editor to change “1” to “0”.
A common location of
CurrentSettings.vssettingsis:Other settings for the debugger are: