10-24-2009 12:34 PM
Solved! Go to Solution.
10-26-2009 10:42 AM
You can use the ExpressionEdit.ComboBoxItems collection. It has methods for adding and removing items.
Hope this helps,
-Doug
10-26-2009 12:34 PM
Doug-
That was the answer. I was missing an assembly reference which was why I wasn't able to use the ExpressionEdit.ComboBoxItems methods. I had "NationalInstruments.TestStand.Interop.UI.AxControls" reference in my project but also needed to have "NationalInstruments.TestStand.Interop.UI" and "NationalInstruments.TestStand.Interop.Ui.Support" assemblies. ExpressionEdit.ComboBoxItems.Insert() is working fine now.
Without your input, I wouldn't have gone back to examine my references. Thanks.