home *** CD-ROM | disk | FTP | other *** search
- ; Example Catch file
- ; Copyright Sean Batten
-
- ;Note, you cannot have 2 or more copies of Clock running at the same time
-
- additem ("Clock")
- additem ("Notepad")
- additem ("Cardfile")
- additem ("Calculator")
- Let program=Choice("Select","Choose a program to load")
-
- ;Check for no choice
- if program=="" goto end
-
- ;Check to see if program is already running
- Exists (program)
- if @EXISTS goto query
- Run (program,"")
- goto end
-
- :query
- Let message=Join(program," is already running. Really load?")
- Let a=ask ("Really??",message)
- if a=="YES" Run(program,"")
-
- :end
-
-