I have this little routine that checks for a users login name. If the user isn't "john" then it restricts them from running a custom command. I want to add additional users to the "approve list". Below is what I added but doesn't seem to work. Any ideas on how I would fix this? (defun logincheck () (if (/= (strcase (getvar "loginname") t) "john" "jack" "bob") (progn (alert "Access Denied! Contact Your CAD Administrator") (exit) )) TIA Collin