2016-03-09 21:50 UTC
What am I missing? I've reduced this to the bare minimum but cannot get a File Dialog to display? It just returns nil. In BricsCAD v16?
(defun c:fdtest ( / )
(command "_OPENDCL")
(dcl-Project-Load "FileOpenTest")
(setq sFile (dcl-Form-Show FileOpenTest/frmImport))
)
(defun c:FileOpenTest/frmImport#OnInitialize (/)
(dcl-MessageBox "We got here")
)
(defun c:fdtest ( / )
(command "_OPENDCL")
(dcl-Project-Load "FileOpenTest")
(setq sFile (dcl-Form-Show FileOpenTest/frmImport))
)
(defun c:FileOpenTest/frmImport#OnInitialize (/)
(dcl-MessageBox "We got here")
)