JCL,

If I launch a script for Testing/Trading and then [Stop] it and/or close Zorro, the panel continues to be visible on the screen without the possibility to close it (no closing/ 'cross' button in the upper right corner).
I then have to kill that Zorro instance via Task manager.

I tried this in the click():
Code
  if (row == -1 && is(RUNNING))  panel(0, 0, 0, 0);

Then pressing [Result] while the script awaits a click on my START button in the panel (while (!START && is (RUNNING)) wait(100); )- works and makes the panel disappear.

However, if I then close Zorro altogether, an instance of Zorro still runs and still has to be killed via Task manager.

Why would this happen?