06-11-2008 02:27 AM
06-11-2008 06:56 AM
Hi Gregory,
I assume you what to write/read when your Uut or an execution is running.
If I am right i would fire a PostUIMessage from the execution to C# Ui.
On reveiving this message in your UI will be able to get a handle to SequenceContext
now your world is open.
Greetings
Juergen
06-11-2008 10:57 AM
06-11-2008 11:59 AM
this code is :
Private void Example (Step stepObj)
{
PropertyObject propertyObj;
String errorString;
propertyObj = stepObj.AsPropertyObject();
errorString = propertyObj.GetValString("Result.Error.Msg",0);
}
What is stepObj? where can I find them?
thank's.
06-12-2008 12:38 AM
Hi,
In fact I have a checkBox in C# UI, and I want write state of checkbox in parameter(variable) in Testand.
I will test your solution and give you a feedback.
If I understand you correctly, you want to pass the state of a checkbox to a parameter in a Sequence.
What you dont specific is whether this is during the execution of the Sequence or not.
I think your best bet would be to write the state of your Checkbox to the StationGlobals. Then let your Sequence pickup the value from the StationGlobals.
Regards
Ray
06-12-2008 12:56 AM - edited 06-12-2008 01:01 AM
06-12-2008 01:50 AM
06-17-2008 02:47 AM