2009-03-31 18:01 UTC
In the beginning of my code I do:
(defun c:DuctilCAD_Tes_OnInitialize (/)
(dcl_ComboBox_Clear DuctilCAD_Tes_Combo-DN)
(dcl_ComboBox_AddList
DuctilCAD_Tes_Combo-DN
(list "30" "50" "80" "120")
) ;_ fim de dcl_ComboBox_AddList
(dcl_ComboBox_SetCurSel DuctilCAD_Tes_Combo-DN 0)
) ;_ fim de defun
Before the closing I try the function below and she comes back anything.
(setq ComboList (dcl_Control_GetProperty DuctilCAD_Tes_Combo-DN "List"))
Am I making something wrong?
Or this is not possible in this condition.
Thanks
(defun c:DuctilCAD_Tes_OnInitialize (/)
(dcl_ComboBox_Clear DuctilCAD_Tes_Combo-DN)
(dcl_ComboBox_AddList
DuctilCAD_Tes_Combo-DN
(list "30" "50" "80" "120")
) ;_ fim de dcl_ComboBox_AddList
(dcl_ComboBox_SetCurSel DuctilCAD_Tes_Combo-DN 0)
) ;_ fim de defun
Before the closing I try the function below and she comes back anything.
(setq ComboList (dcl_Control_GetProperty DuctilCAD_Tes_Combo-DN "List"))
Am I making something wrong?
Or this is not possible in this condition.
Thanks