Load multiple commands to execute in AutoCAD command
- by JNL
I am trying to load the .arx file for a particular program, once the User clicks on the customized tab in AUtoCAD.
Requirements are:
1.When User Clicks on the customized tab, it loads the .arx
2.Runs the program
3.Unload the .arx file. I achieved Point 2 by acedRegCmds-();
I tried getting point 1 and 3 working, by using
acedArxLoad(_T("C:\Example\Example.arx")); command, but it did not
work.
Any help with the same would be highly appreciated
Also just curious, should loading multiple commands in LISP work for this?