Can any one explain why initLIb() function would get called 4 times?
The debugPrintln() appears 4 times in the formula output window. The obiouse explaination is that the addLibrary() is being called 4 times. But that line of code
But that line of code is located at the top of my program, above the preMain() function.
PHP Code:
function initLib()
{
debugPrintln("Function: initLib entered.");
bUserInit = false;
//build Trace file name and set the TraceFile object
TraceFileName = SUBJECT + " " + getSymbol() + "(" + getInterval() + ") Trace.txt"
TraceFile = new File(TraceFileName);
TraceFile.open("wt");
Trace("Trace file: " + TraceFileName + " - opened.");
}
PHP Code:
var TMLib = addLibrary("TMFunctions.efsLib");
Comment