11-12-2013 03:59 PM
What's wrong in my expression? How could I fill a container with brackets or something without describing each parameter?
Step.Result.Error = {0,"",False}
Regards,
Jimmy
11-12-2013 10:45 PM
{} means Array Constant in NI TestStand. You might not be able to fill a container at once. Instaead you should do like this.
Step.Result.Error.Code = 0,
Step.Result.Error.Msg = "",
Step.Result.Error.Ocurred = False
Regards,
Joonam