LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Appending data to the multicolumn list.

Hi,

 

Is there any chance to append or inject the singular row to current multicolumn list box?

 

Now to add something at the end I have to read all data back, add it and load them again. It doesn't look efficient:

 

24242423424.PNG

 

 

0 Kudos
Message 1 of 5
(2,803 Views)

That's the only way I know to do it.  If you're adding a lot of data things might go faster if you turn on defering front panel updates until you're done adding to it.

0 Kudos
Message 2 of 5
(2,793 Views)

Hello,

You can use this example VI to do what you are trying to achieve or use it as a guide or base to build on it. Best wishes.

0 Kudos
Message 3 of 5
(2,746 Views)

What I tend to do in these situations (assuming the you will be adding to the table a lot), is store the current item names in a shift register.  Then you just read from the shift register instead of going through the property node.  It helps memory and performance a little.


GCentral
There are only two ways to tell somebody thanks: Kudos and Marked Solutions
Unofficial Forum Rules and Guidelines
"Not that we are sufficient in ourselves to claim anything as coming from us, but our sufficiency is from God" - 2 Corinthians 3:5
0 Kudos
Message 4 of 5
(2,737 Views)

And not to forget: Use "Defer Panel Updates". This will speed up the overall performance loop and the UI.

0 Kudos
Message 5 of 5
(2,729 Views)