02-13-2008 10:56 AM
02-13-2008 12:17 PM
Abort means "stop executing as soon as possible and don't cleanup". A consequence of not "cleaning up" is that you can leave your system in an undesired state. Thus, abort is not always a good choice to have. You can edit your user privileges to remove the privilege to abort.
Note that is it possible to cleanup by creating a COM object that you hold the only reference to in a local variable. When the sequence completes, either normally, or with an abort, all local variables are released and the COM object will destruct. You can place your cleanup code in the COM object destructor. However, if you aren't familiar with creating COM objects, this might be more trouble than it is worth.
02-14-2008 07:23 AM
02-14-2008 09:49 AM
02-19-2008 01:01 AM
Hi,
Are you using the default OI or SeqEditor or a Customised OI?
And which version of TestStand?
Regards
Ray
02-19-2008 08:20 AM
03-04-2008 05:50 PM
Hello Mark,
Were you able to find a solution to your problem? It has been a while since you posted to I wanted to check on the status of your program. If you are still having trouble then maybe you could provide some updated information or even your sequence file, if you deem necessary, and we can take a look.
03-04-2008 06:05 PM