From the CadGuruCool's Tip and Tricks website:
< start quote here >
When an error occurs in a DCL file, unlike AutoLISP, it is not displayed at the command: prompt in AutoCAD.
Instead all the errors are written in a seperate file called ACAD.DCE You can find it in the current directory. But the ACAD.DCE file does not contain all the details by defalut.
The Tip is : Include the following statement at the beginning of your DCL file:
dcl_settings : defalut_dcl_settings {audit_level=3;}
A value of 3 for the audit_level attribute ensures that the error is pinpointed with the line number, along with the nature of error and a few suggestions to rectify the mistake.
< end of quote >




Reply With Quote
The Tip is : Include the following statement at the beginning of your DCL file: 

Bookmarks