LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Is there a way to Freeze a Column of a Labview Table Control

I would like to freeze the first column of a table and always show it, while the user scrolls to the other columns in the table. Is this possible?
0 Kudos
Message 1 of 4
(4,720 Views)
One solution is to take the first column of data and write it to the "Row Header" property for the table. You will of course have to make the row headers visible by right-clicking on the indicator and selecting the appropriate item from the "Visible" submenu.

If you are already using the row headers for something else, you're toast...

Mike...

Certified Professional Instructor
Certified LabVIEW Architect
LabVIEW Champion

"... after all, He's not a tame lion..."

For help with grief and grieving.
0 Kudos
Message 2 of 4
(4,720 Views)
If you have no scrollbars you could use an old labview trick. Simply place a transparent boolean over the column you want to freeze. This makes it impossible to select the column directly. Only tabbing is the onl way left to reach that column and you can use the event structure to block that also.
greetings from the Netherlands
0 Kudos
Message 3 of 4
(4,720 Views)

Problem:

I need to freeze first 4 columns of a table.

 

Solution:

I will use two near tables (one for the first 4 columns and one for the rest) and programmatically synchronize the scrolling.

0 Kudos
Message 4 of 4
(4,310 Views)