Hi
I have a user defined attribute called "KPI Type" of type combobox.
This "KPI Type" combobox has 2 values: "Value1" and "Value2". Is there a way that I can retrieve the values of the combobox?
Thanks
Hi
I have a user defined attribute called "KPI Type" of type combobox.
This "KPI Type" combobox has 2 values: "Value1" and "Value2". Is there a way that I can retrieve the values of the combobox?
Thanks
var filter = ArisData.ActiveFilter(); var kpiTypes = filter.AttrValueTypeNums(KPI Type TypeNumber goes here); for (var i in kpiTypes) { var kpiType = kpiTypes[i]; Dialogs.MsgBox(filter.AttrValueType(KPI Type TypeNumber,kpiType)); }
hi!! Everyone...
I have a question about getting values from a combobox, because a code from previous entries is no working for me, anyone have another example? please
thank...