Thursday, May 15, 2008

Identify and explain the two methods of the Debug object.

The Debug object's Print method lets you send output from the program to the
Immediate window without entering break mode. It lets you track variable
values at full execution speed and creates a history list of the values in the
Immediate window.
The Debug object's Assert method forces a run-time break when an expression
evaluates to False. You only use this method in the Design environment.

Your Title