08-24-2006 04:31 AM
08-24-2006 04:59 AM - edited 08-24-2006 04:59 AM
Use a property node to achieve this
List box: property>>Item names( accepts 1D array of strings)
Multi column List box: property>>Item names( accepts 2D array of strings)
Table: property>> Value ( accepts 2D array of strings)
In your VI, use suitable array functions to add/remove/replace/delete, any of the item names/ cells and keep updating this modified array into your corresponding properrty node
Hope this helps
Regards
Dev
Message Edited by devchander on 08-24-2006 05:00 AM
08-24-2006 07:26 PM
08-24-2006 10:28 PM
09-07-2006 02:22 AM
09-07-2006 02:58 AM
09-07-2006 03:18 AM
As Dan suggests, using tables will enable you to do that.
Also, to add a 'newly' typed text into a list box, First use a string control to type your test >>and insert this text into the 'item names' array using the 'Insert to Array' function ( or any other appropriate array function)
Put this inside a case structure to add to list, at click of a button
As shown