
Indicates that the list box of a combo box is about to dropped down.
Each control that throws this event has its handler that takes this generic form:
Copy Code |
|---|
(defun c:FormName_ControlName_OnDropDown () ) |
Copy Code |
|---|
; React to the pull down being shown (princ c:MyForm_MyControl_OnDropDown () (princ "OnDropDown()\n") ) |