FUNCTION breakpoint()
Break into console mode.
This method will also hide any active progress monitor [ProvideX Class:ProgressMonitor].
|
|
FUNCTION breakpoint(ClearEvent)
Break into console mode.
This method will also hide any active progress monitor [ProvideX Class:ProgressMonitor].
|
|
FUNCTION close_trace()
Close the trace file.
|
FUNCTION end_trace()
Stop the program trace. The trace file is NOT closed.
|
FUNCTION open_trace(to_file$)
Create (if necessary) and open a text file to be used to log information while debugging
a class or extension.
|
Parameter | Description |
to_file$ |
The name of a text file to create/open for logging of trace information. |
|
FUNCTION resume()
Restore the progress monitor if it was active and resume execution of the application.
|
FUNCTION start_trace()
Start a program trace to the trace file that must have already been openned.
|
FUNCTION write_trace(inText$)
Write a text message to the trace file.
|
Parameter | Description |
inText$ |
A string containing the text to be written to the trace file. |
|