Quote from: owenwengerd on September 11, 2024, 03:08:27 PMYou would need to restart before the new demand load registry keys are active. You could complete the install, then read the newly added demand load registry key via lisp to get the full path to the OpenDCL runtime module, then load it via (arxload).
(defun checkodcl ()
(if (and (not dcl_project_load) (vl-cmdf "OPENDCL") (not dcl_project_load))
(progn
(startapp "msiexec.exe" (strcat "/i \"" "OpenDCL.Runtime.9.2.3.3.msi" "\""))
)
)
)
Quote(defun c:project/Form4/ListView1#OnKeyUp (Character RepeatCount Flags /)
(setq Character "SpaceBar")
(setq RepeatCount 0)
(setq Flags 0)
(alert "OK")
)