I have the following as a *.mnl file for autocad 2004 and it doesn't work or load at all. Does anybody know what's wrong? I know that I need to upgrade the doslib and objectdcl to 2004 versions. Thanks, Devin ;;************************************************************************** ;;* * ;;* Wintsch Menu Loads and Lisp Routines * ;;* * ;;************************************************************************** (if (not (member "OBJECTDCL.ARX" (mapcar 'strcase (arx)))) (arxload "n:\wintsch\autolisp\objectdcl.arx" "ObjectDCL.arx not found.") ) (if (not (member "DOSLIB2K.ARX" (mapcar 'strcase (arx)))) (arxload "n:\wintsch\autolisp\doslib2k.arx" "doslib2k.arx not found.") ) (if (not (member "WINTSCH.VLX" (mapcar 'strcase (dos_lisplist)))) (load "n:\wintsch\autolisp\wintsch.vlx") ) (if (not (member "CHTEXT.LSP" (mapcar 'strcase (dos_lisplist)))) (load "n:\wintsch\autolisp\chtext.lsp") )