06-30-2009 01:14 PM
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
06-30-2009 03:22 PM
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