02-16-2011 01:05 AM - edited 02-16-2011 01:06 AM
Hi guys!
I just have a small question. It's reagarding scrolling in a table. Attached is a small vi with a table. It contains 10 elements given by an array. The table consists of 9 rows, which means I have to scroll to see the last element. I usually just hover my muse over the table and use the mousewheel. The "problem" is that I can scroll down forever in that table. There is no limit. Just as with Excel. I can't find any property nodes that does the trick, even though I'm pretty sure this is the place to look. I've tried the number of rows property, but that one changes the size of the table.
If the array input has 9 or less elements there should be no scrolling at all. And if it's more than 9 elements, the scrolling should stop when the user hit the "bottom". I can't create any events since I don't got full version of LabVIEW. So there should be an other way.
02-16-2011 09:22 AM
How about using boolean up/down buttons to scroll through the table? This way, you can programmatically limit the table.
02-16-2011 09:22 AM - edited 02-16-2011 09:23 AM
How about using boolean up/down buttons to scroll through the table? This way, you can programmatically limit the table.
Sorry for the double post. Not sure how that happened.
02-17-2011 03:30 AM
Hi!
Thanks for the reply. I have to try it out:)