12-04-2012 10:01 PM
Hi all,
I have a .ini file in which a set of modules with there order of execution is mentioned.I want to get all these values sorted as an array so that I can proceed with the execution of each in the order mentioned.The module list in the .ini file looks like this:
.
Here, digits represent the order of execution of module.
I should get output as an array with following values:
1 MNO
2 DEF
3 STU
4 PQR
5 GHI
6 VWZ
7 ABC
8 JKL
I know about config data and read key vis but since the module list is huge I dont know how to write an efficient code for this.All suggestions are welcome.
Thanks.
Solved! Go to Solution.
12-04-2012 11:28 PM
The snippet below should be very close to what you want.
12-05-2012 12:42 AM
Hi,could you please post the vi for this.?
12-05-2012 12:49 AM
Thanks nathand..I got it..:)