
Indicates the user explicitly selected a date.
The event handler takes this generic form for most combobox types:
Copy Code |
|---|
(defun c:FormName_ControlName_OnSelect () ) |
Copy Code |
|---|
; React to the selection of a new date (defun c:MyForm_MyControl_OnSelect () (princ "OnSelect()\n") ) |