03-15-2022 05:23 PM
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?
Solved! Go to Solution.
03-16-2022 03:23 AM - edited 03-16-2022 03:24 AM
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.
03-16-2022 07:20 PM
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