Trace (statement)

Syntax Trace a$
Description Traces (prints) a string to the trace output. By default, when running in the Program Editor, tracing will be output to the trace window. When running from the Event Manager, tracing must be specifically enabled (TraceEnable) in order for tracing to occur.
Example
Sub Main()
??????Dim x as new Point
??????a$ = InputBox$("Enter a point id")
??????x.Id = a$
??????x.OnChange
top :
??????x.GetNext
??????Trace str$(x.TimeStamp) & " " & x.Value
??????goto top
End Sub