2009-11-17 10:13 UTC
Hello everybody
I'm using autocad 2009 LT and autocad extender which allows to run lisp routines on autocad LT, opendcl is not 100% compatibile with this autocad extender so for example when normal autolisp syntax looks like this
(dcl_Form_Close abc_Form)
i have to divide it into such syntax (dcl_Form_Close "abc" "Form") to make it work on autocad 2009 LT and autocad extender, or i get prompt from opendcl : Bad argument
because I'm not able to force autocad 2009 LT to work with such code (normal autocad 2009 works with it ) :
(setq file (dcl_BinFile_Open "c:\\file.txt" "r"))
(setq data (dcl_BinFile_Read file T) <<< here I get opendcl prompt : bad argument
(dcl_BinFile_Close file) <<< here I get opendcl prompt : bad argument
I'm looking for library or lisp routine which has similar functions to : dcl_binfile_open / dcl_binfile_write / dcl_binfile_read . Maybe one of you came across of such functions
Regards
Sebastian
s.barszczewski@wp.pl
I'm using autocad 2009 LT and autocad extender which allows to run lisp routines on autocad LT, opendcl is not 100% compatibile with this autocad extender so for example when normal autolisp syntax looks like this
(dcl_Form_Close abc_Form)
i have to divide it into such syntax (dcl_Form_Close "abc" "Form") to make it work on autocad 2009 LT and autocad extender, or i get prompt from opendcl : Bad argument
because I'm not able to force autocad 2009 LT to work with such code (normal autocad 2009 works with it ) :
(setq file (dcl_BinFile_Open "c:\\file.txt" "r"))
(setq data (dcl_BinFile_Read file T) <<< here I get opendcl prompt : bad argument
(dcl_BinFile_Close file) <<< here I get opendcl prompt : bad argument
I'm looking for library or lisp routine which has similar functions to : dcl_binfile_open / dcl_binfile_write / dcl_binfile_read . Maybe one of you came across of such functions
Regards
Sebastian
s.barszczewski@wp.pl