LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Not able to write value in a class from different VI

Solved!
Go to solution

Situation is like this.

I have a main VI which calls a object manager which loads classes in an array of classes.

Back in the main I call a abstract method of the loaded class(To More Specific Class), then when the loaded class is executed it will write a value.

 

This all works, but when I perform the last step in a different vi(which is called from the main) then the loaded vi will not write a value.

 

The inheritance of the classes are:

- instrument

- abstract

- Sine(Here I try to write a value in the variable off the .ctl of this class)

 

 

0 Kudos
Message 1 of 4
(2,695 Views)
Solution
Accepted by topic author InspectorGadget123123

Are you passing the object out of your subVI?  Remember that LabVIEW deals with objects in a by-value paradym.


GCentral
There are only two ways to tell somebody thanks: Kudos and Marked Solutions
Unofficial Forum Rules and Guidelines
"Not that we are sufficient in ourselves to claim anything as coming from us, but our sufficiency is from God" - 2 Corinthians 3:5
Message 2 of 4
(2,687 Views)

Still learning how the classes work.

First I thought that every class created it's own variables and methodes, so when using 2 classes of the same, they are independent to each other.

But I now believe that the methodes are the same, only the variables change, correct me if I'm wrong.

 

You gave some good hints.

After the variables change I replaced the class in the class array(I created this function in my 'ObjectManager').

Now it works!

 

thanks.

0 Kudos
Message 3 of 4
(2,646 Views)

@InspectorGadget123123 wrote:

But I now believe that the methodes are the same, only the variables change, correct me if I'm wrong.


Yes, the methods are the same for every object of the same class and any children that did not override said method.

 

The main thing to remember is that LabVIEW is a data flow language.  So the data is in the wire.


GCentral
There are only two ways to tell somebody thanks: Kudos and Marked Solutions
Unofficial Forum Rules and Guidelines
"Not that we are sufficient in ourselves to claim anything as coming from us, but our sufficiency is from God" - 2 Corinthians 3:5
0 Kudos
Message 4 of 4
(2,627 Views)