LabWindows/CVI

cancel
Showing results for 
Search instead for 
Did you mean: 

Jumping to Table End

Solved!
Go to solution

Hi !

 

I have a little problem with the table control in CVI.

 

I have a Panel with a Table that i'm updating it in my test program , the table can show 16 rows at the time while i'm having more then 100 different tests .

 

While the test executes i'm seeing the first 16 tests while i want to see last 16 tests , i want the scroll bar to jump to end all the time .

 

do you have any idea how to do that ? is there an option to that ?

 

thank u .

-----------------------------------------
Kobi Kalif
Software Engineer

0 Kudos
Message 1 of 2
(2,990 Views)
Solution
Accepted by Kobi_K

You can use

 

GetNumTableRows (panelHandle, PANEL_TABLE, &rows);

SetActiveTableCell (panelHandle, PANEL_TABLE, MakePoint (1, rows));



Proud to use LW/CVI from 3.1 on.

My contributions to the Developer Community
________________________________________
If I have helped you, why not giving me a kudos?
0 Kudos
Message 2 of 2
(2,978 Views)