05-31-2006 10:06 PM
06-01-2006 12:49 AM
Hi Andy
There is no way of directly modifying the block diagram if you work with an executable.
Basically, if you want to use an executable and you still need to modify the block diagram, then there is something wrong with your code. You definitely have to take a look over it once more. Working this way could be compared to a normal application (let's say MS Word) - if you want to change a setting you don't modify the code Word, do you?
As you say you want to change parameters, you can use files to store parameters which are loaded depending on some user input or program state.
Thomas
06-01-2006 02:47 PM
06-04-2006 05:37 AM
Juz a suggestion...
In your application, insert a Button, say "Configure" or anything that make sense. And, this Button calls a subvi when it is clicked
subvi: Consist of all Controls that your system may require changes to be made during runtime.
Upon entering the subvi:
There could be many ways of preparing the subvi as well as the *.ini file.
Last but not least, *.ini is read by the application program everytime the program is invoked or when changes is made through the subvi.
Cheers!