Instrument Control (GPIB, Serial, VISA, IVI)

cancel
Showing results for 
Search instead for 
Did you mean: 

failure load.cpp line 4835

I write vi program ,but Labview then shutdown,
I open this vi, labview report this message "failure load.cpp line 4835" ,How can I repair it?
0 Kudos
Message 1 of 2
(2,943 Views)
In LabVIEW 6.1, the maximum number of front panel objects (controls and indicators) you can have is 555. The error you are getting is typically associated with VIs which exceed this limit.

If you need to place more than 555 objects, you can use one of these techniques:

Use clusters to place groups of related front panel controls or indicators together. For example, if you have ten Boolean switches, and place them inside a cluster, you will have reduced your front panel controls from ten to one.

Use SubVIs to eliminate the number of front panel controls and indicators. This has the benefit of making the user interface easier to use, aids in debugging, improves future manageability of the code, and allows for the reuse of code using SubVI
J.R. Allen
0 Kudos
Message 2 of 2
(2,943 Views)