Syntax
ShowVars
Remarks
Displays a list of variables and their current values to help you debug the active macro. With ShowVars instructions, you can pause the macro and check the variables at exactly the points you want.
Example
This example defines the variables name$ and age as the items in the first line of the text file DATA.TXT. The variables are displayed in a dialog box where the values may be modified.
Open "DATA.TXT" For Input As #1 Input #1, Name$, Age ShowVars
See Also
MsgBox, Print, Stop