home *** CD-ROM | disk | FTP | other *** search
- @echo off
-
- :top
- tipi t.tpi %1
- if errorlevel 8 goto :finis
- if errorlevel 7 goto :run
- if errorlevel 6 goto :lookup
- if errorlevel 5 goto :edit
- if errorlevel 4 goto :finis
- if errorlevel 3 goto :run
- if errorlevel 2 goto :lookupPC
- if errorlevel 1 goto :editPC
- if errorlevel 0 goto :noprog
-
- :editPC
- cls
- edit %1
- goto :top
-
- :edit
- cls
- setapp e %1
- app /e
- goto :top
-
- :lookup
- cls
- setapp a tipi.adr
- app /a
- goto :top
-
- :run
- cls
- tipi %1 %2 %3 %4 %5 %6 %7 %8
- pause
- goto :top
-
- :lookupPC
- cls
- edit tipi.adr
- goto :top
-
- :noprog
- pause
-
- :finis
- cls
-