2024-09-11 19:47 UTC
Hi. First post here. Been a member of theSwamp for many years (deegeecees) and although I haven't used LISP much over the past 2 decades, I've been needing to get back into it recently.
I'm looking for a way to load OpenDCL on other PC's through a network via LISP.
I've put this together after some searching around, but it doesn't recognize ODCL after installing:
The MSI file is located in a support path, so it runs as it should. I'm not sure what I'm missing. Any help is appreciated.
I'm looking for a way to load OpenDCL on other PC's through a network via LISP.
I've put this together after some searching around, but it doesn't recognize ODCL after installing:
(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" "\""))
)
)
)The MSI file is located in a support path, so it runs as it should. I'm not sure what I'm missing. Any help is appreciated.