NI TestStand

cancel
Showing results for 
Search instead for 
Did you mean: 

How to write text to TestStand output window from C#

Hi,

 

Is it possible to write some text to the output window of TestStand from C#?

 

I want to write this text while executing some C# code.

 

Best regards 

0 Kudos
Message 1 of 2
(3,561 Views)

Hi,

 

Check out the example GenerateOutputMessage.seq in the TestStand examples folders.

Unfortunately there is not a C# code but there is an ActiveX example and a C version.

 

I believe the minimum you need to do is;

 

mOutputMessage = mEngine.NewOutputMessage("text");

mOutputMessage.Post;

 

Regards

Ray Farmer

Regards
Ray Farmer
Message 2 of 2
(3,556 Views)