LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Updateing Indicators and Controls

I am using LabView 5.0
In a SubVI I am using a loop and would like to update the value of an
indicator an the front panel of the calling VI before the loop is
finished and the SubVI is left. How can I do that?
If this is not possible, what are you doing in such a case?

regards

Paul Steiner

-----------------------------------------------------------
HSR Hochschule Rapperswil
Paul Steiner
Abteilung E6d
Oberseestrasse 10
CH-8640 Rapperswil
Switzerland
Tel: +41 55 222 4111 (intern 222 verlangen)
Fax: +41 55 222 4400 (z.H. Paul Steiner E6d)
EMAIL: p2steine@hsr.ch
0 Kudos
Message 1 of 4
(5,554 Views)
Paul Steiner wrote:
>I am using LabView 5.0
>In a SubVI I am using a loop and would like to update the value of an
>indicator an the front panel of the calling VI before the loop is
>finished and the SubVI is left. How can I do that?
>If this is not possible, what are you doing in such a case?


If you use a global variable you can write to the variable from the sub-vi
and read the variable from a loop in the calling vi.

Helge
0 Kudos
Message 2 of 4
(5,554 Views)
better still, use local variable of the indicator in question. Much faster
than a global.

Helge Lyshaug wrote in message <7jif74$ihi$1@news.uit.no>...
>
>Paul Steiner wrote:
>>I am using LabView 5.0
>>In a SubVI I am using a loop and would like to update the value of an
>>indicator an the front panel of the calling VI before the loop is
>>finished and the SubVI is left. How can I do that?
>>If this is not possible, what are you doing in such a case?
>
>
>If you use a global variable you can write to the variable from the sub-vi
>and read the variable from a loop in the calling vi.
>
>Helge
>
>
0 Kudos
Message 3 of 4
(5,554 Views)
It works with a global variable, I tried it out. A local might be faster but
with a local you cannot write to the calling VI.

Paul


Richard Jones wrote:

> better still, use local variable of the indicator in question. Much faster
> than a global.
>
> Helge Lyshaug wrote in message <7jif74$ihi$1@news.uit.no>...
> >
> >Paul Steiner wrote:
> >>I am using LabView 5.0
> >>In a SubVI I am using a loop and would like to update the value of an
> >>indicator an the front panel of the calling VI before the loop is
> >>finished and the SubVI is left. How can I do that?
> >>If this is not possible, what are you doing in such a case?
> >
> >
> >If you use a global variable you can write to the variable from the sub-vi
> >and read the variable from a loop in the ca
lling vi.
> >
> >Helge
> >
> >

--
Mit freundlichen Grüssen

Paul Steiner

-----------------------------------------------------------
HSR Hochschule Rapperswil
Paul Steiner
Abteilung E6d
Oberseestrasse 10
CH-8640 Rapperswil
Switzerland
Tel: +41 55 222 4111 (intern 222 verlangen)
Fax: +41 55 222 4400 (z.H. Paul Steiner E6d)
EMAIL: p2steine@hsr.ch
0 Kudos
Message 4 of 4
(5,550 Views)