CADEx

DCL

Short answer

Dialog Control Language — a small markup AutoCAD uses to define LISP dialog boxes.

DCL (Dialog Control Language) is AutoCAD's legacy file format for defining LISP dialog boxes. A .dcl file declares the layout — rows, columns, buttons, edit boxes — and LISP code uses load_dialog, new_dialog, action_tile, and start_dialog to wire it up. DCL is dated but still ubiquitous because it requires zero external dependencies and works in every AutoCAD vertical.

Related terms

AutoLISP

Autodesk's dialect of LISP, built into AutoCAD since 1986, used to write custom commands and automate drawings.

VLX

A compiled Visual LISP application that bundles multiple .lsp/.fas files, DCL dialogs, and resources into one file.