Hello, In my routine i load the file wipeout.arx but when i'm checking (arx) it is not there? i use routine maskdimtext but it fails. Maybe because wipeout.arx is not loaded. What goes wrong? Martin (defun wipeoutp () (if (< (atof (getvar "ACADVER")) 16) ;; AutoCAD 2000, 2000i en 2002 (if (member "wipeout.arx" (arx)) T (if (findfile "wipeout.arx") (arxload (findfile "wipeout.arx") nil) (prompt "Error: bestand WIPEOUT.ARX niet gevonden.") ) ) ;; else (if (member "acwipeout.arx" (arx)) T (if (findfile "acwipeout.arx") (arxload (findfile "acwipeout.arx") nil) (prompt "Error: bestand ACWIPEOUT.ARX niet gevonden.") ) ) ) (princ) ) (wipeoutp)