brown dot on left column of code

M

Mazza

Can someone please tell me why if you click on the left hand side of a line
of code that a brown dot appears and the code is highlighted in brown.
What is the purpose of this?
Mazza
 
D

Dirk Goldgar

Mazza said:
Can someone please tell me why if you click on the left hand side of
a line of code that a brown dot appears and the code is highlighted
in brown. What is the purpose of this?

That's a breakpoint. When the code runs, it will pause execution at
that line, waiting for you to take some debugging action or tell it to
continue.
 
M

Mazza

Thanks dirk

Dirk Goldgar said:
That's a breakpoint. When the code runs, it will pause execution at
that line, waiting for you to take some debugging action or tell it to
continue.

--
Dirk Goldgar, MS Access MVP
www.datagnostics.com

(please reply to the newsgroup)
 
Top