LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Table Event

I am trying to use a table control to update a table indicator. For example, in Table 1, a control, if the user modifies a cell with a numeric, I would like to numercially process that cell and put it in Table 2, an indicator.

I have tried using the Event structure along with the 'Value Changed' event, however I cannot find a way of obtaining which cell has been modified. Is there a way to find out which cell has been modified within the "Value Changed" event?

Thanks for any help.
0 Kudos
Message 1 of 3
(2,958 Views)

On "Table:keyUp" event wire the table reference to the EditPos property.  Now every keystroke which changes the table is captured any the table cell is noted.

 

Paul

Paul Falkenstein
Coleman Technologies Inc.
CLA, CPI, AIA-Vision
Labview 4.0- 2013, RT, Vision, FPGA
Message 2 of 3
(2,954 Views)
Paul,

Thanks for the reply. That works!

For a few hours, I was stubbornly looking for a method or node that would give me the cell. I wonder why the modified cell information is not available somewhere. I guess the events are as lightweight as possible. Then again, an extra copy of the entire previous table data, 'oldVal', is kept in memory.

- Arun
0 Kudos
Message 3 of 3
(2,945 Views)