08-10-2007 04:03 PM
public int edit(ref SequenceContext sc)
{
PropertyObject po = sc.Step.AsPropertyObject();
po.SetValString("Action", 0x1, uxActionPullDown.SelectedItem.ToString());
po.SetValString("Instrument", 0x1, uxModel.SelectedItem.ToString());
po.SetValNumber("GPIB_Address", 0x1, Convert.ToDouble(uxGPIB.Value));
}
Any help would be greatly appreciated
08-13-2007 04:42 AM
Hi,
Are these properties defined statically as part of the Step properties or are you trying to insert the dynamically?
Regards
Ray farmer
08-13-2007 09:06 AM
They are not statically defined, I had defined them programmatically. I would rather have them static but was having problems with that also. I did figure out how to statically add them, I was in the wrong area trying to do it so my problem will be moot. It is a wonder what a weekend away not thinking about the problem will do.
Thanks for the help, your question sparked the solution