11-07-2010 11:05 PM
Hi,
I am using the following piece of code to delete the Stationglobal variable in TestStand from .Net
try
{
myEngine.Globals.DeleteSubProperty("ATE_CURRENT", 0x2);
}
it's not throwing any exceptions and executed sucessfully ,but i can see the variable still exsists in the TestStand.
How can i remove the stationGloabals,Do i need to do some thing else?
Thanks in advance
Bharathi
Solved! Go to Solution.
11-07-2010 11:27 PM
IVI -
Try calling Engine.CommitGlobalsToDisk(True) after you delete the StationGlobal in question. Please let me know the results.
Hope this helps.
11-07-2010 11:37 PM
Thanks it worked!!!!!!!