Executing

Hello,

We are currently using the demo version of FastScript and it is meeting a lot of our requirements. However users being users I want more ;) .

Is it possible to detect if a scripting is still running?

We have a script that dynamically creates a form which the user may leave open. Is it possible to leave the script running, thus leaving the variables and form available?

So I would have something like:

fsScript.Execute;
fsScript.CallProcedure(...);
fsScript.Terminate;

Is this possible now or is it planned for the future?

Regards

Comments

  • edited 2:54AM
    Even when script is finished, all variables and objects (that have been not freed directly in the script) are available. You even can run the script again (by Execute method). If you perform Compile, all variables and objects will be destroyed.

Leave a Comment