New |
Menu: Project > New
Default Shortcut Key: none
Macro function: ProjectNew()
The Project | New command creates a project file containing the names of all files that are currently open. The file is added to the editor's list of open files and made available for editing. The project file contains a useful series of comments that explain the use of project files:
After making any changes that may be desired, the project file should be saved in the usual way.
Boxer's project files provide a means of simultaneously loading a pre-defined list of files. In essence, a project files is simply a text file whose file extension is .BP and whose content consists of a list of filenames, one per line.
When a project file is named on Boxer's command line, or when the icon of a project file is dragged and dropped onto the Boxer window (or its icon), all of the files named within that file will be loaded for editing. If you need to edit the content of the project file itself, use the Edit Active or Edit Other command, as may be appropriate.
A project file can be used to maintain a list of filenames that relates to a given project or document set, and to open those files quickly. For best results, the full pathname--including the drive designator and directory path--should be used. This will ensure that the project file functions properly regardless of the default directory in force at the time it is used.
Empty lines can be used freely within a project file to separate filenames as may be appropriate. Lines beginning with an asterisk (*) will be considered comment lines, and will not be processed.
c:\myproject\source\main.cpp exec:c:\myproject\docs\updates.doc exec:http://www.mysite.com/index.htm exec:c:\myproject\bitmaps\project logo.bmp
The first file would open in Boxer, while the next three files would be opened by the applications that are associated with their file types. If the filepath to be opened contains embedded spaces, the entire line must be surrounded in double quotes:
"exec:c:\my project\docs\monthly updates.doc"
|