N
Nicolas Andricq
Guest
Hello, You have two choice : use toolbar manager combobox or toolbar manager control link to an ultracoboeditor For the first choice, you can acces to the combobox by : DEFINE VARIABLE cl_Cmb AS Infragistics.Win.UltraWinToolbars.ComboBoxTool NO-UNDO. cl_Cmb = CAST(tlb_Manager:Tools:Item['MYCMB'],Infragistics.Win.UltraWinToolbars.ComboBoxTool). cl_Cmb:ValueList:Reset(). /* I suppose ! */ /* Add */ DEFINE VARIABLE cl_List AS Infragistics.Win.ValueListItem NO-UNDO. cl_List = Infragistics.Win.ValueListItem(). cl_List
isplyText = "Test". cl_Cmb:ValueList:ValueListItem:Add(cl_List ). For the second, more easy, you have acces to all propertx, event and method of the ultracomboeditor. Nicolas
Continue reading...
Continue reading...