Page 1 of 1

Application Monitor

Posted: Mon May 19, 2008 1:24 pm
by artika23
Ray, is there any way to have a design run more than one .exe at a time? I create a quad core/mem useage design and only want it to run while I have games or benchmarks running. I added all my .exe to the applications monitor under the design but it will only allow me to add one .exe. Is there a fix? If not and if it's not to much trouble, could you add that multiple .exe option in the next build of LCDStudio?

Posted: Mon May 19, 2008 3:14 pm
by Ray
You can create a custom variable for that right click the data tree and select add custom variable drag in all the variables you need and seperate them with the or operator ( || ) so you should end up with something like

Code: Select all

((bool)AppMonitor.App1) || ((bool)AppMonitor.App2) || ((bool)AppMonitor.App3)
I don't have lcdstudio handy at this moment to produce a real example but i'm about 90% confident this is what is +- should look like.

Posted: Tue May 20, 2008 3:46 am
by artika23
Ray it worked perfectly, thank you.