call CwImportProject sProjectFile sProjectFile (String) Path to a .GDO file. Must be an explicit path or the name of a file in the current directory ("\tspectra\work" by default.)
/* 1. Import the project 'car.gdo' from the current directory. */ projfile='car.gdo' call CwImportProject projfile say 'Loaded new project' projfile exit /* 2. Procedure to load a project, returning a boolean to indicate success. */ loadFile:procedure parse arg projectFile signal on syntax name cantload call CwImportProject projectFile signal off syntax return 1 cantload: signal off syntax return 0
Functions by NAME |
Index |
Functions by PURPOSE |