Forum Discussion

jloyzagawh's avatar
jloyzagawh
Contributor
9 years ago
Solved

Change the application run folder

There are times that I want to run the application run folder for a specific application in the TestedApps list depending on the version/directory where it is stored - can I do this programmatically?...
  • NisHera's avatar
    9 years ago

    you can select which aplication in run-time to run from TestedApps

    can do like........

    var App;

    if (X==Y) App =one.exe;

    if (X==Z) App =two.exe;

    ..

    ...

    ..

    appObj = 'TestedApps.'+App;
    eval(appObj).Run();