A co-worker is doing this (attached) in CVI. How can I access the same properties/methods in LabVIEW?
// get the status bar panes so we can connect them to various captions
tsErrChk( TSUI_StatusBarGetPanes(gMainWindow.statusBar, &errorInfo, &panes));
tsErrChk( TSUI_StatusBarPanesGetItem(panes, &errorInfo, CA_VariantLong(7), &paneReportLocation));
tsErrChk( TSUI_StatusBarPaneGetCaption (paneReportLocation, &errorInfo, &psReportPaneStr));
The code, essentially, is getting a the report file path and name from the status bar. In this status bar, the path is found in the seventh pane.