Below is a piece of code I am using to change the layout name. I am running the code in conjunction with DosLib. I would like to have DosLib throw up a dialog box prompting the user for the name instead of the user being prompted at the command line. Does anyone know how to modify this code to suit? (defun c:LNAME () (PRINC " Type New Name For Layout") (COMMAND "LAYOUT" "RENAME" "" PAUSE (dos_msgbox "Layout Name Changed" "Layout Renamed" 1 3 2)) (PRINC) )