Hi kevmi2ca,
You can have the front panel of the VI that is currently being executed
in TestStand appear by enabling the "Show VI Front Panel When Called"
Step setting. In TestStand 4.0, this can be found by clicking on the
step you would like to have appear, select the Module tab, and then
check the box next to "Show VI Front Panel When Called". When this
step is run in the future, it will display the VI front panel.
In order to retrieve the Sequence Context in the Simple OI.vi, you can
connect an event callback which will allow you to retrieve the Sequence
Context. The reason you are only receiving the context at the end of
execution is due to the fact that there is nothing forcing it to update
in LabVIEW if you do not connect an event callback of some sort. You
can use UI Message objects to pass information between TestStand and
your Operator Interface which will essentially force an event callback,
and will allow you to access the current Sequence Context. There is a
knowledgebase article titled "How Can I Access Events After the
Execution of Each Step in TestStand?"
(http://digital.ni.com/public.nsf/allkb/7E03EDE1C2D1BA5D86257158006FC4DD)
that should help point you in the correct direction. Even though this
article is for exectuing Post Step, you can easily modify the approach
for any UI Message, such as executing at the beginning of each step.