|
-
Feb 16th, 2009, 06:52 PM
#1
Thread Starter
Frenzied Member
[2.0] VS Debugger, go to address, and don't pass exception to debugger?
Finally got VS Debugger to work and I am liking it so far but 2 problems.
1.) How do you go to an address? In the disassembly window, I have tried tons of combinations but nothing works. It always gives an invalid expression error.
2.) How do you disable passing an exception to the debugger? It is a nice feature but I am not looking for it right now.
An example of what I mean(psuedo code).
Code:
int b()
{
return 1/0; //The debugger breaks here
}
void a()
{
try
{
b();
}
catch
{
//I want it to break here instead on an exception in "b"
}
}
Didn't know which section to post this in, sorry.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|