Reputation: 62578
This may sound like a heresy :), but I mostly program in fortran (intel 10) and have actually no need for Visual Studio Debugger. Or at least, never have gotten used to it.
So to put it shortly, where does one turn it off ? Is it even possible ?
Upvotes: 1
Views: 168
Reputation: 46657
[Debug - Start without Debugging] or Ctrl F5
.
Or launch your app outside Visual Studio.
Upvotes: 1
Reputation: 23629
You probably mean Visual Studio 2008 (sorry, stupid remark).
Do you want to get rid of the "Do you want to start the debugger" question if your application crashes? In that case, you may want to look at the registry key "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\AeDebug". You will find there entries to configure this popup (appear or not, which application to start at crash, ...).
Upvotes: 1