06-28-2013 10:15 AM
Hi,
I'm working on a SCADA interface. In this application there are different tables with vertical scroll bar.
I prefer to make visible only the initialized rows (I've initialized 40 blank rows of a table with a string array). Since the window not contain all 40 rows but only 20 rows, I set the rows number of "table properties window" to 20; so I added a vertical scroll bar.
Now, when a user scroll the scroll-bar, he can view not only the 40 rows initializated, but an undefined number of rows.
There's a way to visualize only a limited number of rows?
Thanks in advance!
Solved! Go to Solution.
06-28-2013 10:47 AM
Maybe this post can help you.
Ben64
06-28-2013 12:04 PM
Blog for (mostly LabVIEW) programmers: Tips And Tricks
06-29-2013 08:07 AM - edited 06-29-2013 08:07 AM
There's another thing you can do, if the number of actual rows can get less than 20.
In the same place where you set the scrollbar properties, set the array's NUMBER OF ROWS to the LESSER of the number of rows you want to show, and the number of rows you actually have.
That will shrink up the array to fit the data.
Blog for (mostly LabVIEW) programmers: Tips And Tricks