Kelie, I've confirmed the problem
.. code attached.
I'll add it to the bug list at SourceForge
added: https://sourceforge.net/tracker/index.php?func=detail&aid=1812018&group_id=187950&atid=923363
(DEFUN C:ComboBox (/ )
;;--------------------------------------
;; ASSUME THE OpenDCL .arx IS LOADED
;;--------------------------------------
(DCL_LOADPROJECT "20071012-ComboBox" T)
(DCL_FORM_SHOW 20071012-ComboBox_Form1)
(PRINC)
)
;;============================
;;============================
(DEFUN c:20071012-ComboBox_Form1_ComboBox1_OnSelChanged (nSelection sSelText /)
(DCL_CONTROL_SETTEXT 20071012-ComboBox_Form1_TextBox3 (itoa nSelection))
(DCL_CONTROL_SETTEXT 20071012-ComboBox_Form1_TextBox2 sSelText)
)
;;============================
(DEFUN c:20071012-ComboBox_Form1_OnInitialize (/)
(DCL_COMBOBOX_SETCURSEL 20071012-ComboBox_Form1_ComboBox1 2)
)
;;============================
(princ)
[attachment deleted by admin]