NI TestStand

cancel
Showing results for 
Search instead for 
Did you mean: 

Is there are way to replace the uut information dialog box with a custom form created in .net?

Is there are way to replace the uut information dialog box with a custom form created in .net?

0 Kudos
Message 1 of 3
(3,154 Views)

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

--Signature--
Sessions NI-Week 2017 2016
Feedback or kudos are welcome
0 Kudos
Message 2 of 3
(3,148 Views)

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

0 Kudos
Message 3 of 3
(3,136 Views)