Purpose |
Retrieve the details of a specific stack frame from the call stack. |
Syntax |
sfname$ = CALLSTK$(n) |
Remarks |
CALLSTK$(1) returns the name of the current Sub, Function, Method, or Property, and the value of each of the parameters at the time it was called. CALLSTK$(2) returns the name of the procedure which called the current one, as well as its parameters. Likewise, CALLSTK$(3) returns the one above it, and so forth. If the CALLSTK$(n) parameter is outside the
range of one (1) through the number of stack frames identified by CALLSTKCOUNT,
an empty
|
Restrictions |
The CALLSTK$ function can be invaluable during debugging, but it generates substantial extra code which should be avoided in a final release version of an application. If the source code contains #TOOLS OFF, all CALLSTK$ functions which remain in the program return an empty string. The CALLSTK$ function is "thread-aware", returning only stack frame details from the thread in which it was referenced. |
See also |
|
Example |
FOR x& = CALLSTKCOUNT TO 1 STEP -1 |