LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Unflatten from string error 42 - VI server method for controls

Solved!
Go to solution

Trying to use the VI-Server method to save and retrieve control values. Get a generic error 42 when using the control name "minimum value" but the Vi works fine if using a conrol name "minimum values". The enclosed vi can switch (using S1) between the two control names to show the error is in the name difference. Is there a way to fix the problem or should another method to save and retrive controls be used.

 

Attached VI is in LV2010 sp1.

 

Thanks for your help.

0 Kudos
Message 1 of 5
(2,349 Views)

It looks like "minimum value" is some sort of reserved term.  Maybe?

Jim
You're entirely bonkers. But I'll tell you a secret. All the best people are. ~ Alice
For he does not know what will happen; So who can tell him when it will occur? Eccl. 8:7

0 Kudos
Message 2 of 5
(2,346 Views)

Jim,

 

Thanks for the reply. You're probably right because "maximum value" and "maximum values" does the same thing. Strange it's happening at the "unflatten to string" function.

 

Would "flatten to XML" and "unflatten to XML" functions work better than "unflatten to string". Not sure how to apply this or even if it's posible.

 

Thanks,

 

Steve

0 Kudos
Message 3 of 5
(2,335 Views)
Solution
Accepted by Steve1

One thing you may want to try is turning off the "Convert EOL" option in the Write To Text File and Read From Text File functions.  Since you are saving binary data as a string, you want to make sure the binary data is preserved.  It may make more sense for you to use the binary files, instead of text files, since you are trying to save and load binary data.

 

Chris M

0 Kudos
Message 4 of 5
(2,332 Views)

Chris,

 

Both solutions worked (turning off the EOL and using the binary read/write functions). Will use the binary read/write functions in the VI as you recommended.

 

Thanks,

 

Steve

0 Kudos
Message 5 of 5
(2,325 Views)