06-27-2015 06:34 PM
I have a bunch of columns on my front panel and some of them contain lon strings while others only have a max of 2-3 character strings in them.
I am looking for a way to resize each column without resizing all the others at the same time. If i have them all the same lengh and the lengh of the max string i get the array is far too large to fit on the screen space availble and navigating labview VI leaves a lot to be desired.
Its purly cosmetic but would help me see information clearer, and since the information is all locked up in the long strings its not going to work well with what im doing next.
Solved! Go to Solution.
06-27-2015 06:39 PM
Look at multicolumn listboxes or tables. They allow customization of column widths and are specifically designed for user interfaces. Keep your data in an array on the block diagram for processing but use the specialty indicators on the front panel.
Lynn
06-27-2015 07:05 PM
06-27-2015 07:12 PM
Thanks was a great help.
Also this may be a tricky one. but dont want to start thread after thread.
How can i recieve the very top row index of the listbox. say if i scoll down 4 lines the top index would be 4. (Top index being to index of the topmost visable row of the listbox)
im looking to create a code that say "from index (top) get column-index(2) as (This-string) "
06-27-2015 07:36 PM
There is a Top left visible cell property node. That should have the information you want. If not, browse through the other property nodes for a listbox.
Lynn