LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Inserting/deleting rows

Solved!
Go to solution

I am trying to delete some superfluous rows from this table that's in our GUI. I right-click on this table and select "Delete Row," then I save the project, but these changes don't take.  How can I get rid of these rows completely?

Ninjatrainee_0-1647383022320.png

 

0 Kudos
Message 1 of 3
(720 Views)

The data in a table control is its value (unlike a multicolumn listbox, for instance, where the string values are stored separately from the value), so if you want this to be fixed, you need to right click the control, set the current value as default (in the Data Operations submenu) and then save the VI.

 

Personally, I don't like string based lists which are fixed, so my preference would have been to update the items from the code, but I don't know your code, so I don't know if this makes sense in your case.


___________________
Try to take over the world!
0 Kudos
Message 2 of 3
(686 Views)
Solution
Accepted by topic author Ninja-trainee

Before you save did you use "Make Current Values Default"?  If not then the Default values get loaded with the VI before it runs.  

 

Edith your table, set the edited values as default, save and you should be good.

 

Craig

0 Kudos
Message 3 of 3
(643 Views)