09-22-2011 01:04 PM
Is there are way to replace the uut information dialog box with a custom form created in .net?
09-22-2011 02:05 PM
Hi
there are two ways for reaching this task.
1. Override the PreUutCallback in your SequenceFile. (just your test will consume it.)
2. or Change the PreUut Sequence in your model's SequenceFile. (All your tests will call this one)
On both ways will end in your own defined seqence where you can place your .net form by calling a .net Steptype
Hope this helps
juergen
09-23-2011 08:52 AM
For the parallel and batch model (which are a bit more complicated than the sequential model), there are examples for doing this in the examples folder:
<TestStandPublic>\Examples\ProcessModels\BatchModel
<TestStandPublic>\Examples\ProcessModels\ParallelModel
For the sequential model you just override the preuut callback and add code to display your dialog there setting the parameters of the sequence as needed.
-Doug