Display Programmer Remarks at Runtime

M

maduckie123

Hi,

Is there a way in MS Access to display programmer remarks and/or values of
variables at runtime? This is a technique that proved quite helpful during my
Oracle programming days -- it helps to pinpoint where issues lay when
troubleshooting syntax issues. I have searched and searched but have found
no tips on how to do this in Access. Any help would be appreciated.

Thanks
 
D

Douglas J. Steele

The Immediate window (which you get to using Ctrl-G) provides access to
variables while the code is running. Use the options in the Debug menu to
single step through the code.
 
Top