home *** CD-ROM | disk | FTP | other *** search
EPOC OPL Source | 2000-10-17 | 646 b | 27 lines |
-
-
- REM Macro Startup version 1.00
- REM Start all the App/Doc in c:\Startup
- REM Very useful after a backup or a reset
- REM Do not forget to create the Startup folder
- REM To be used with Macro5
- REM Last edited on 6 May 1998
-
- Include "Macro.oph"
-
- PROC Macro:
- Local File$(255)
- File$ = Dir$("c:\Startup\")
- While File$ <> ""
- If FgApp%:(File$)
- Pause 90
- Else
- Pause 5
- Endif
- File$ = Dir$("")
- EndWh
- FgSystem:
- ENDP
-
-
-