2014-02-13 16:21 UTC
I have the following code..
(VL-LOAD-COM)
;;;---SHOW FORM
(DEFUN c:GBSCC (/ dcl_id flag)
(COMMAND "OPENDCL")
(DCL_PROJECT_LOAD "GBSCC")
(SETQ dcl_id (DCL_FORM_SHOW GBSCC_FormGBSCC))
(PRINC)
)
This code base is over 1000 lines...this is just the beginning.
Developed with AutoCAD 2012 on Windows-XP 32-bit PC.
Runs OK on versions 2009-2012.
Having problem with version 2013 Win-7 64-bit.
error: no function defintion: dcl_project_load
Any ideas as to why I an getting this error?
(VL-LOAD-COM)
;;;---SHOW FORM
(DEFUN c:GBSCC (/ dcl_id flag)
(COMMAND "OPENDCL")
(DCL_PROJECT_LOAD "GBSCC")
(SETQ dcl_id (DCL_FORM_SHOW GBSCC_FormGBSCC))
(PRINC)
)
This code base is over 1000 lines...this is just the beginning.
Developed with AutoCAD 2012 on Windows-XP 32-bit PC.
Runs OK on versions 2009-2012.
Having problem with version 2013 Win-7 64-bit.
error: no function defintion: dcl_project_load
Any ideas as to why I an getting this error?