I started working with the new Visual Studio 2010. One thing in debugging mode is really annoying: When you press F5 to continue without stepping, the program does not continue like it used to do in Visual Studio 2008 and before but it breaks in certain conditions, even the Disassembly was opened once. How can I avoid that?
|
VS breaks when a condition is encountered. There are two kinds of conditions:
As you are not defining break-points, there must be some exceptions that are causing the break. These exceptions might have been handled differently in your previous VS version. You can learn about exceptions and the Exceptions Dialog in Exception Handling. However, you had better examine very carefully why these exceptions were triggered, because they might just be simple bugs in your code that were not detected by the previous VS (or maybe new conditions that didn't previously arrive). The Disassembly window is shown when no source-code exists at the address. Sometimes when source-code does exist, one needs to right-click the window and pass to source mode. | |||||
feedback
|