I have a JavaScript that runs 10 backtests on the same afl. This works fine,
but I wanted to add some popup windows that I saw for a vsbacis program. I did
a bunch of googles. Lots of stuff, but no help. Here is what I have and need
help with.
var i = 1;// In the end, a loop will take i from 1 to 10.
var WshShell = WScript.CreateObject("WScript.Shell");
// Informational Popup "Step 1" all the way to "Step 10" for 5 seconds
Return = WshShell.popup("Step " & i, 5, Bacttest Job, 64);
// Informational Popup "Done" for 10 seconds outside of loop
Return = WshShell.popup("Done", 10, Bacttest Job, 64);
// Does not work. Help needed and thanks!