Trace Statement

Outputs information in the Output Window

Syntax

Trace expression

Remarks

Outputs the value of expression to "CDBasic Output" window. Trace statement is used to trace the values of expressions and variables during debugging.

Example

Dim str as string
str = "test message"
TRACE str

 

See Also

MsgBox Function