I have a JavaScript file the runs 10 backtests on the same afl. I did a bunch
of googles to find out how to pop up a window for telling me when each of these
10 has been completed and when the entire job is completed. Here is what I
came up so far and need help.
var i = 1;// A loop will take i from 1 to 10 in final code.
var WshShell = WScript.CreateObject("WScript.Shell");
// Informational Popup "Step 1" all the way to "Step 2" for 5 seconds
Return = WshShell.popup("Step " & i, 5, Bert Job, 64);
// Informational Popup "Done" for 10 seconds outside of loop
Return = WshShell.popup("Done", 10, Bert Job, 64);
// Does not work. Help needed.