NI TestStand

cancel
Showing results for 
Search instead for 
Did you mean: 

TSUISUPP captionconnection type

Within the TestStand (LabVIEW) Operator Interface, in the file Full OI - Configure SequenceFileView Manager.vi (attached are a couple of bitmaps), the ExpressionEdit Control that is going into the InvokeNode, has a drop-down going into the captionsource parameter. 
 
1) I cannot find any documentation on what this type is
 
2) I see a comment that says ConnectCaption: TSUISUPP.CaptionConnection.  What does this mean, and where can I find info on TSUISUPP.xxx
 
3) The little comment beside this Invoke node says "Connect the Sequence DescriptionExpressionEdit to the CurrentSequenceComment Caption.".  What is really going on here.  I'm not sure during runtime what this box is really doing.
Download All
0 Kudos
Message 1 of 2
(2,820 Views)
This code is connecting a caption source to the Sequence Description panel at the bottom of the SequenceFile view in the Full Featured Operator Interface.  The caption source is some string that will displayed as a caption in the Expression Edit control assigned to the CaptionConnection.  If the currently selected Sequence is described by a comment then the comment will be displayed in the Sequence Description.

(1)  You can find help on both the ConnectCaption command as well as the CurrentSequenceComment_Caption.  To get help on the ConnectCaption command, right click on the invoke node in LabVIEW and select "Help for ConnectCaption".  The CurrentSequenceComment_Caption is described under the "CaptionSources Enumeration" help page.  You can reach this page by searching the help by index and typing "CurrentSequenceComment_Caption".

(2)  The TSUISUPP.CaptionConnection is the connection object that is created by connecting the caption source to the ActiveX object that will display the caption.  It represents a reference to the ExpressionEdit control that will eventually display the comment.  TSUISUPP is the ActiveX library that contains the Operator Interface controls.

(3)  The box is simply meant to display any comment for the currently selected Sequence, assuming that a comment exists for the Sequence.  If no comment exists, then the display box will accordingly be blank.

Let me know if you have any further questions.

Thanks,

Tyler T.
0 Kudos
Message 2 of 2
(2,797 Views)