2010-12-05 00:35 UTC
I'm pulling my hair out, (what little there is). I finally went through the tutorial, so I thought I woudl try some stuff at home. I created a combo box at the office that initialized just fine. I then tried to create it at home and nothing shows up in the drop down. I even copied the form and lisp from the ofiice. When I load the form at home the combo box is not populated with the "initialize" values.
Here is the LISP code and I've attached the odcl file. What is missing??
(defun c:Invertest ()
(command "_opendcl")
(dcl_project_load "pipecalcs" T)
(dcl_form_show pipecalcs_invertcalcs)
)
(defun c:PipeCalcs_InvertCalcs_OnInitialize (/)
(dcl_ComboBox_AddList PipeCalcs_InvertCalcs_MHSize "48" "60")
(dcl_ComboBox_AddList PipeCalcs_InvertCalcs_ComboBox1 "70" "60")
)
Here is the LISP code and I've attached the odcl file. What is missing??
(defun c:Invertest ()
(command "_opendcl")
(dcl_project_load "pipecalcs" T)
(dcl_form_show pipecalcs_invertcalcs)
)
(defun c:PipeCalcs_InvertCalcs_OnInitialize (/)
(dcl_ComboBox_AddList PipeCalcs_InvertCalcs_MHSize "48" "60")
(dcl_ComboBox_AddList PipeCalcs_InvertCalcs_ComboBox1 "70" "60")
)