LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Error Showing While Using Report Generation ToolKit VIs

Hi All,
 
           When I use report generation VIs Like Excel Easy Tables its showing following errors and i am not able to contiune using the same,
 
C:\Program Files\National Instruments\LabVIEW 8.2\vi.lib\utility\NIReport.llb\Set Report Font.vi
    - LabVIEW 8.0 changed a constant that was wired to a Case structure to a hidden control to maintain compatibility with LabVIEW 7.1 and earlier.
    - LabVIEW 8.0 changed a constant that was wired to a Case structure to a hidden control to maintain compatibility with LabVIEW 7.1 and earlier.
what might be the issue, i am using LabVIEW 8.2
0 Kudos
Message 1 of 2
(2,394 Views)
Hi,

In LabVIEW 7.1 and earlier, subVIs could be kept in memory by wiring a constant to a Case structure and placing the subVI in a case that would not be executed. For example, you could wire a True constant to the Case structure and place a subVI in the False case of the Case structure, and LabVIEW would load the subVI along with the calling VI. However, from LabVIEW 8.0 onwards, the case structure is optimized to remove code that is not going to be executed. Changing the constant to a control ensures that this VI behaves as it did in LabVIEW 7.1 and earlier. If the intent is not to keep the subVIs in memory, you can change this control back to a constant by right-clicking the control and selecting 'Change to Constant' from the shortcut menu. The proper way to keep a subVI in memory without calling it is to use a Static VI Reference.

Good Luck!

Warm regards,
Karunya R
National Instruments
Applications Engineer
0 Kudos
Message 2 of 2
(2,371 Views)