home *** CD-ROM | disk | FTP | other *** search
/ PSION CD 2 / PsionCDVol2.iso / Programs / 12 / Macro5SIS.sis / M5Macros.sis / Startup.opl (.txt) < prev    next >
Encoding:
EPOC OPL Source  |  2000-10-17  |  646 b   |  27 lines

  1.  
  2.  
  3. REM Macro Startup version 1.00
  4. REM Start all the App/Doc in c:\Startup
  5. REM Very useful after a backup or a reset
  6. REM Do not forget to create the Startup folder
  7. REM To be used with Macro5
  8. REM Last edited on 6 May 1998
  9.  
  10. Include "Macro.oph"
  11.  
  12. PROC Macro:
  13.     Local File$(255)
  14.     File$ = Dir$("c:\Startup\")
  15.     While File$ <> ""
  16.         If FgApp%:(File$)
  17.             Pause 90
  18.         Else
  19.             Pause 5
  20.         Endif
  21.         File$ = Dir$("")
  22.     EndWh
  23.     FgSystem:
  24. ENDP
  25.  
  26.  
  27.