Debugging is a process you use to find and resolve errors, or bugs, in your Visual Basic code. There are three types of errors you may encounter as your code runs:
Compile-time errors also include syntax errors, which are errors in grammar or punctuation. These include mismatched parentheses or an incorrect number of arguments passed to a function.
To help you isolate all three types of errors and to monitor how your code runs, the Visual Basic Editor provides debugging tools that let you step through your code one line at a time, examine or monitor the values of expressions and variables, and trace procedure calls.
Note To use most of the Microsoft Access debugging tools, you need to suspend execution of your code. For more information, click .