From Friday, April 19th (11:00 PM CDT) through Saturday, April 20th (2:00 PM CDT), 2024, ni.com will undergo system upgrades that may result in temporary service interruption.

We appreciate your patience as we improve our online experience.

LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

keeping default values through a logoff/shutdown

 
So,
  I want my user to be able to change the default values, but not have to save the VI to keep the new values through a restart(ie exiting labview).
 
I currently have my VI set as password protected, which I believe eliminates the ability to change default values ('make current...')
 
Secondly, if I were to build my VI into an Application, how does this work? are the default values hard coded into the EXE, or are they called from an initilization file that can be updated? 
 
Any advice will be appreciated. 
 
ps. I've already glanced at this: http://zone.ni.com/devzone/cda/epd/p/id/1173  but am curious to hear a few more solutions 
Thanks,  Kevin
0 Kudos
Message 1 of 23
(6,021 Views)
As far as I know there is no way to store default values in an executable programatically (and I've tried).  Your best bet is to use the configuration VIs to generate an .ini file.  Save it as the last thing your program does, and load it as the first thing.  .ini files are text so you have the added advantage of being able to edit them offline.
LabVIEW Pro Dev & Measurement Studio Pro (VS Pro) 2019 - Unfortunately now moving back to C#, .NET, Python due to forced change to subscription model by NI. 8^{
Message 2 of 23
(6,007 Views)
Using the "Make Current Values Default" method does not work in an executable. As a matter of fact, it won't work from within LabVIEW if the VI you are trying set is running. This is because changing the default values requires the VI to recompiled and saved and you can't do that while it's running. And you really can't do that with an executable.
 
NIquist suggestion of using an .ini file the best way to go. Fairly easy to setup and maintain. There's some examples that ship with LabVIEW that show the basic setup needed. Open the Example Finder (Help menu>Find Examples) and on the Search tab, search for "Configuration". You'll see a couple examples named, Read Configuration Settings File and Write Configuration Settings File.
 
Ed


Ed Dickens - Certified LabVIEW Architect - DISTek Integration, Inc. - NI Certified Alliance Partner
Using the Abort button to stop your VI is like using a tree to stop your car. It works, but there may be consequences.
Message 3 of 23
(5,994 Views)

Thanks guys,

  This is what I thought the answer was, I was just thinking that perhaps NI had designed something really simple that I wasn't aware of.

 

 

0 Kudos
Message 4 of 23
(5,992 Views)
No, but OpenG has VIs which allow you to save and load all controls on a panel to an INI file. You can modify it to operate on specific controls by using their references and Value property.

___________________
Try to take over the world!
0 Kudos
Message 5 of 23
(5,966 Views)

Hi catsh16,

      If you only want to retain [not edit] values between runs, you might consider bundling the target values in a (typedef'd) cluster, then writing the flattened-cluster to a binary file (see pic).  When app starts, it reads the file and unflattens "LastRun" values.  Nothing wrong with INI files Smiley Wink - I just like keeping the code as simple as possible. Smiley Happy  Do you want to be able to see/edit the values between runs?

Utility.File.WriteRead.vi just replaces or appends any string to a file, or reads a file's contents.

Cheers!

Message Edited by tbd on 07-29-2007 02:56 AM

"Inside every large program is a small program struggling to get out." (attributed to Tony Hoare)
Message 6 of 23
(5,952 Views)

The main problem with a flattened string (particularly when using a typedef, which encourages changes) is that when you change it you have to convert the current file to the new format. The OpenG VIs are as simple as that externally (although relatively complicated and slow internally), but have the advantage of producing INI files and surviving changes.

Here is the method I refered to earlier (7.0). In this case, it uses OpenG code inside, but the same thing could be achieved by flattening the value to a string.

The main problem with this is the VIs are confusing because they both get an array of control references. Perhaps changing them to be a single VI and adding a required Read\Write input would make it more clear what is being performed.


___________________
Try to take over the world!
Message 7 of 23
(5,951 Views)
You make a good point tst in that it points out a useful distinction between different kinds of defaults. (...blessed is the one who makes distinctions...)

There are some defaults where you are simply saving user preferences such as the order of columns in a table or the like. The proper operation of the software isn't really dependent upon these sorts of items. They are there as a convenience and so if they get messed up when the software structure changes it's probibly no big thing.

The other kind of defaults are things that the program needs for proper operation. For optimum security (no matter how you define the word) these shouldn't be saved in a file at all, but in a database. There is code posted elsewhere on the forum that makes utilizing a simple database almost as easy as writing to a text file.

Mike...

Certified Professional Instructor
Certified LabVIEW Architect
LabVIEW Champion

"... after all, He's not a tame lion..."

For help with grief and grieving.
Message 8 of 23
(5,939 Views)

Hi tst,


@tst wrote:

The main problem with a flattened string (particularly when using a typedef, which encourages changes) is that when you change it you have to convert the current file to the new format.


INI files also invite changes that can break the program (even post-deployment.)  How can the OpenG tools "survive" a missing/mis-named INI parameter, if not by applying some default?  Whether during development or after deployment, if the LastRun typedef changes, then yes, GUI-User defaults are reentered once.  If this is burdensome, use a default-cluster when unflatten-from-string fails.

If there happen to be any really critical "defaults", my preference is to embeded fail-safe values as a program-constant (cluster-constant) to be used if unflatten-from-string (or INI-file reader) errors-out.

Mike, I liked your observation that we should focus on the nature of the data, but to me the distinction (between whether to use flatten-to-string or INI) isn't made on the basis of whether read-values are consistent with proper program operation - either method can handle that.  I make the distinction based on whether the user needs to read/edit the values.  If user doesn't need to edit the values, making them editable seems a liability and flatten-to-string method as simpler and safer.  Sure, an INI file could be made read-only, but that seems illogical here. 

I know from experience that the flatten-to-string method (for GUI settings) is simple, reliable, and easily adapts from one project to the next - are you sure you won't try it? Smiley Wink

Cheers!

P.S. Kevin, if you go the INI route, beware that the NI's Read Key.vi (see File\Configuration File VIs) may not return an error even if requested-key is completely missing from INI file! Smiley Surprised

"Inside every large program is a small program struggling to get out." (attributed to Tony Hoare)
Message 9 of 23
(5,918 Views)


@tbd wrote:

How can the OpenG tools "survive" a missing/mis-named INI parameter, if not by applying some default? 


Yes, but the key is that the default is applied per key and not for the entire file, so if you add a new field, your old configuration is not lost.

This is an advantage which has nothing to do with whether the user will need to edit the configuration or not. Since using the OpenG VIs is as easy as using the VIs in your image (in fact, they work in exactly the same way, only with a variant instead of a flattened string) I don't see any simplicity advantage to the string method. The main difference is that your VI does both reading and writing and the OpenG VIs do not create a key which is not found, but you can easily modify them to do that. In fact, I have done such modifications for simpler INI VIs.


the NI's Read Key.vi (see File\Configuration File VIs) may not return an error even if requested-key is completely missing from INI file! Smiley Surprised

It's not "may not". It simply won't. Instead, it has a boolean output to tell you if the key was found or not.

P.S. The flatten method may be easy to use for GUI controls, but I think the VIs I posted in reply 7 are even easier. Smiley Very Happy


___________________
Try to take over the world!
0 Kudos
Message 10 of 23
(5,902 Views)