ase Messages in the Execution Display.vi that ships with TestStand. The Main Message loop polls for meassage types(string names). If I post a user message from a .seq file, I do not see a message type string at the selector input. What am I missing? ThanksIf you are posting custom UIMessages, then you must handle them within the vi \OperatorInterfaces\NI\LV\Sequence Display\TestStand - UI Message Handler.vi. Inside of the "Default" case, you will add another case structure that will have different cases to handle your custom messages. In other words, a case for 10000, 10001, 10004,...). Please have a look at the example titled "LabVIEW/TestStand Simple Operator Interface with Yield Information". This example is an example program that is on the website (zone.ni.com). This should demostrate how to handle custom UI Messages.
Once you have handled this message, you need to insert it in the queue, so that the correct Execution Display can extract it. Each execution display VI (multiple executions) wi
ll have its own uniquely named queue. You may or may not need to do this, depending on where you want the information. Have a look at how we do it in other cases within the UI Message Handler.vi.
Hope this helps.