|
|
|
|
- Use conditions according to the platforms
- Closing the trace window
- Trace window
TraceStart (Function) In french: TraceDébut
Warning
From version 17 (78), StartTrace is kept for backward compatibility. This function is replaced by TraceStart.
Opens the trace window or saves the trace information in a text file. Remarks: - TraceStart has no effect if the trace window is already opened.
- TraceStart is optional. The first call to Trace or to TraceBuild automatically opens the trace window.
Syntax
TraceStart([<Characteristic> [, <Trace file>]])
<Characteristic>: Optional constant Characteristics of trace:
| | trCreation | Clears the trace file. | trDisable | All the calls to Trace will be ignored. | trFile | The trace window will not be displayed anymore and the information found in the trace window will be saved in the file named <Trace file>.
| trTopMost | The trace window will be displayed above all the system windows.
| trWindow (Default value) | The trace window is displayed in the upper-left corner of the screen.
| trWindow + trFile | The trace window will be displayed and the content of the trace window will also be saved in the file named <Trace file>.
|
<Trace file>: Optional character string Name and full path of the file where the information found in the trace window will be saved. If this parameter is not specified, the trace file will be created at the root of the "C" drive and its name will have the following format "Trace_<ProjectName>.txt". Remarks Use conditions according to the platforms Closing the trace window TraceEnd is used to close the trace window. If the trFile constant is specified, TraceEnd stops saving to the trace file.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|