OpenDCL Forums

OpenDCL => Runtime/AutoLISP => Topic started by: mclisp on November 18, 2016, 08:17:07 AM

Title: Help to update lisp files
Post by: mclisp on November 18, 2016, 08:17:07 AM
Hi
I'm updating some routines that work well, from AutoCAD 2008 to AutoCAD 2015,
I ask, in addition to the  "command" problem that sometimes becomes "command-s",
for AutoLISP, you have other indications?

OpenDcl gives me the following errors:
error: no function definition:
C:MCCOPRIGIUNTI/FORM1/COMBOBOX2#ONSELCHANGED;
in fact I find in my old lisp
C: MCCOPRIGIUNTI_FORM1_COMBOBOX2_ONSELCHANGED;
different  "_" with / and #
exists a way to update automatically ?
you can set OpenDCL keep the same format?

for OpenDCL i downloaded the 8.1.1.1 version, what are the steps to do?

example: open file.odcl to save them on new system, or reviewing Events and Properties

thank you
Title: Re: Help to update lisp files
Post by: owenwengerd on November 19, 2016, 09:14:30 PM
The problem is that event handler function names are saved in the .odcl file, so the function names in the lisp file must match exactly. There's a utility to automatically update both your .odcl and .lsp files in this thread:
http://www.opendcl.com/forum/index.php?topic=2084.0
Title: Re: Help to update lisp files
Post by: mclisp on November 20, 2016, 09:30:03 PM
THANK Owenwengerd