LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

load<>save panel<>ascii-file

I would like to have a vi which creates a human
readable ascii-file from any vi's front panel.
If possible with the option to load it back into
the vi. This way a situation can be saved as kind of a version. Also using the same settings in another vi could be handy.
I have made a vi which makes creates a file containing control names, flattened data and typedefs of the controls, but it's binary !
Is there a way to translate these codes to uman readable code ?
This would bring me closer to the solution.
0 Kudos
Message 1 of 2
(2,218 Views)
Therefor you can use the ini file vi's. You can create a new section for
each control and assign the informations (name, flatten data) with
different keys like:

[Control_01]
Name=...
FlattenData=...
....

[Control_02]
....


In some cases you are not able to see the real value, for instance the
flatten data. Just try it out.

Henrik


bruyn schrieb:
>
> I would like to have a vi which creates a human
> readable ascii-file from any vi's front panel.
> If possible with the option to load it back into
> the vi. This way a situation can be saved as kind of a version. Also
> using the same settings in another vi could be handy.
> I have made a vi which makes creates a file containing control names,
> flattened data and typedefs of the controls, but it's binary !
> Is
there a way to translate these codes to uman readable code ?
> This would bring me closer to the solution.
0 Kudos
Message 2 of 2
(2,218 Views)