LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

how to show in the main front panel the progress of each sub Vi ?

Solved!
Go to solution

my program has many sub VIs, i wish to show in the main front panel the progress of each sub Vi; what is the best way to do that?

atleast i need to show that each sub vi is completed, [can i add details on the main front panelsuch as: filename that is being read by a subVi, graphs plotted by a subVi, etc..]

 

can i display a graph from a subVi on the front panel of the main Vi?

 

what i hv done is attched as picture.

0 Kudos
Message 1 of 8
(3,541 Views)

Is the progress or status of the sub-vi's shown in the circles?  ie: above Date wise VI?

 

If the circles are controls (Silverlight boolean), then you could pass references of those booleans into the sub-vis.  You could change from True or False (red / green) or change the color of the control to perhaps yellow, blue, green red, etc to show status, using a Round Color box found in the Silverlight palette.

 

 

Message 2 of 8
(3,530 Views)

as suggested...pass references and cntrl references

 

Spoiler
main ref cntrl.png

 

 

 

 

Message 3 of 8
(3,506 Views)
@Ray.R : yes only the status of each sub Vi is shown byt ht circle LEDs
0 Kudos
Message 4 of 8
(3,468 Views)

@apok: what u showed is great and was what i needed, thank you for the reply 🙂

but i face a problem in my sub Vi when i try to do the same

the "property node" is used with a graph in Your Vi but in my Vi i hv an XY graph plotting clusters..

am getting this error

"You have connected two terminals of different types

  Type of the source is cluster of 2 elements

  Type of the sink is double   "

 

image attached is of the sub Vi

 

what should i do to get this graph in my main Vi ?

0 Kudos
Message 5 of 8
(3,465 Views)

You are trying to wire a cluster of 1D array to a 1D array.  Maybe it sounds less confusing if I say it backwards...

You are trying to wire a 1D array to a cluster of 1D array.

 

😉

0 Kudos
Message 6 of 8
(3,448 Views)
Solution
Accepted by topic author Mahisnair
follow example....from your example: it looks like your explicit property node wants a (dbl) data feed Smiley Surprised
Spoiler
a.png

 

Message 7 of 8
(3,429 Views)

@apok: thanks a lot for the reply, i did it 🙂

thank you

0 Kudos
Message 8 of 8
(3,387 Views)