Breakpoints Window

  • Thread starter Thread starter Bill
  • Start date Start date
B

Bill

In Access 2003, where do I find the Breakpoints
Window where I can set a condition upon which
the breakpoint becomes active?

Thanks,
Bill
 
It's also called the code window or the immediate window.
Ctl + G will open it for you.


Jeanette Cunningham MS Access MVP -- Melbourne Victoria Australia
 
The immediate window is where I would go to
view the output of "Debug.Print". Unless I'm
missing something here, I don't get that I can
enter a condition that will turn on a breakpoint
like the HELP describes.

What I want to do is single-step through code
when a certain name is reached in a cloned
recordset.

Bill
 
In the immediate window, choose the line where you want the code to stop so
you can single step.
Click in the very far left of that line, and the line will be highlighted
(often red).
That is called Setting a breakpoint.

Now run the code by opening the form and using the buttons etc.
When access gets to the line with the breakpoint, the immediate window will
open.
Press F8 to move to the next line of code.

Jeanette Cunningham MS Access MVP -- Melbourne Victoria Australia
 
Bill said:
In Access 2003, where do I find the Breakpoints
Window where I can set a condition upon which
the breakpoint becomes active?

Thanks,
Bill

In the VBE, Debug -> Add Watch
 
Back
Top