PDA

View Full Version : loading lisp



richardl
2004-06-11, 01:09 PM
is it possible to load a lisp file so that it is accessible to all the currently opened drawings ?

TIA

mjfarrell
2004-06-11, 01:12 PM
Look into adding that LISP file to your APPLOAD start-up suite.

richardl
2004-06-11, 01:15 PM
actually it's a routine that I add programmatically add to the start-up, so every subsequent drawings will have that routine loaded but, the drawings that are already opened will not have access to it, is there a way to change that ?

mjfarrell
2004-06-11, 01:22 PM
I believe that it would be best to not attempt this
'progammaticaly'. Add it to the Startup Suite, and then
issue the REINIT command to reinitialize your CAD environment.

stig.madsen
2004-06-11, 01:32 PM
Check out VL-LOAD-ALL in the help files

richardl
2004-06-11, 02:41 PM
that's exactly what I wanted thanks !