
12-05-2003, 08:23 AM
|
 |
Contributor
|
|
Join Date: Sep 2003
Location: New Jer$ey
Posts: 540
|
|
|
EFileTahi-A, the Immediate window, you will find, is a fantastic debugging tools. Another way to use it is to check the value of a variable when you hit a break point (or pause the application.) Simply type in "? iMyInteger" or whatever variable name and it shows it to you! This way you can check values as you step through your code. Another clearer example would be "? App.Path".
Also, with the app paused, you can assign values to a variable. Say you open a recordset that gets no data. You can type "RS.Close" and change the SQL and re-run the RS.Open line again.
|
|