How to autoload a drx application?

How to autoload a drx application?

Comments

  • Hi,The way I have been doing this is, create a file called on_start.lsp.Put this file in the Bricscad folder and add something like this in it(IF (NOT 1B992710-F374-11DC-95FF-0800200C9A66) (PROGN (PRINC "\nloading DRXNET_2.04_8.DLL") (ARXLOAD "./support/DRXNET_2.04_8.DLL") (SETQ 1B992710-F374-11DC-95FF-0800200C9A66 T) ))There is probably a better way though

  • Hello Daniel,What does the first line represent: (IF (NOT 1B992710-F374-11DC-95FF-0800200C9A66) and what does the last line do: (SETQ 1B992710-F374-11DC-95FF-0800200C9A66 T) Thanks in advance

  • Actually, it’s a bad example. The thought was if I used a GUID in a global lisp variable, I would be able to detect if my application had been loaded. Using autoload.rx is the better method Dan

This discussion has been closed.