03-13-2014 09:42 AM
Hi
I read data from Access database (2D array), I need to use this data throughout my application. Is there a way to intialize
an array of string constants with this data i.e. obtain an string constant array with values from database
Solved! Go to Solution.
03-13-2014 09:49 AM
I think you are looking for something similar to an Action Engine.
Norbert
03-13-2014 09:53 AM
No. A constant is a constant. You can:
1. Make a vi that accesses the information to a string indicator, which you'll then change to a constant and use in your program.
2. Access the information and store it in a shift register or send the wire to VI's in need.
/Y
03-13-2014 11:49 AM
The data is read is just once and array is therefore need to be written to only when the application loads
03-13-2014 12:06 PM
03-13-2014 12:13 PM
I too say we need more information about what the poster wants. But if you want to write some settings once, and have those settings available in the entire application, it sounds like a job for WORM.
Unofficial Forum Rules and Guidelines
Get going with G! - LabVIEW Wiki.
17 Part Blog on Automotive CAN bus. - Hooovahh - LabVIEW Overlord
03-13-2014 12:28 PM
Thanks for the link as the information just needs to be read once this should do the job