data in variables no longer seen during debugging

B

barret bonden

Access 2003 : while debugging VBA code (setting breakpoints and such) I used
to be
able to see the value of variables by running
my mouse over them; very useful it was, too. This now seems not to be
working ! Did I throw a switch without knowing ?
How to turn that back on ?
 
A

Allen Browne

That should work in break mode, if the window has focus, and nothing else is
wrong.

It may not work if a timer is running.

You can always open the Immediate Window (Ctrl+G), and ask about a variable,
e.g.:
? var1

Or you can use the Watch or Locals window (View menu, in the code window.)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top