home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-03-18 | 250 b | 9 lines | [TEXT/MJUA] |
- macro 'createfile';
- {Loads the data file 'Ejemplo.surv' and creates a new
- data file 'Nuevo fichero' with vars 1,2,3,7 and 8}
-
- begin
- RESET;
- GETDATA('HD80:Mrp Project:Data:Ejemplo.surv');
- CREATE('HD80:Mrp Project:Data:Nuevo fichero',1,2,3,7,8);
- end;