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.