home *** CD-ROM | disk | FTP | other *** search
/ ST-Computer Leser 2002 January / STC_CD_01_2002.iso / APP / TASKBAR / JAYGRPII / SIC / README.SIC < prev    next >
Encoding:
Text File  |  2000-08-14  |  433 b   |  21 lines

  1. // start.sic (c) 14.08.2000 by JAY Software
  2. //
  3. // This is the JAY Groups II start script
  4. //
  5.  
  6. // Get a script path
  7. cwd(Path);
  8. ReaddMePath = Path + "readme";
  9.  
  10. // Type readme >console
  11. if ( fopen( ReaddMePath ,"r" ) ) {
  12.     while ( getline( ReaddMePath, sLine ) )
  13.         print( sLine );
  14.     fclose( ReaddMePath );
  15. }
  16.  
  17. // Type readme >console
  18. source( Path + "plgtst.sic" );
  19.  
  20. pexec( Path + "..\\jaygrpii.app", "sic\\plgtst.grp" );
  21.