The Visual LISP project feature provides a convenient way to manage the files that make up your application. And with the project feature, you can open a single project file instead of individually opening every LISP file in the application. Once the project is open, getting to its constituent files is a double-click away.
After you save the file, Visual LISP displays the Project Properties dialog box.
In the Project Properties dialog box, the list box on the left shows all LISP files that reside in the same directory as your project file and are not included in that project. The list box on the right lists all the files that make up the project. When you add the selected files to the project, those file names move from the left box to the right box.
Visual LISP loads project files in the order they are listed. Because the prompt that tells users the name of the command is located at the end of the gpmain.lsp file, you need to move this file to the bottom of the list. Loading this file last results in the prompt displayed to users. The utils.lsp file should be loaded first because it contains initialization code for the application. Therefore, select utils in the dialog's list box and choose the Top button.
Visual LISP adds a small project window to your Visual LISP desktop. The window lists the files in your project. Double-click on any file to open the file in the Visual LISP text editor (if it is not already open) and make it the active editor window.