home *** CD-ROM | disk | FTP | other *** search
- echo off
- cls
- If exist PS.Com goto ShowComScreen
- Echo I'm trying to display a "COM" screen called PS.Com. It's not here!!!
- Goto End
- :ShowComScreen
- Rem
- Rem The next line "runs" a P-Screen "Com" screen. It's called PS.Com.
- PS
- Rem
- ASK Do You Like It? Press: [Y]es or [N]o ----} @YN
- cls
- IF ERRORLEVEL 2 GOTO NO
- IF ERRORLEVEL 1 GOTO YES
- :NO
- Echo Sorry you don't like it. Try your own design. I'm sure you'll do better.
- Goto End
- :YES
- Echo Glad you like it. Try one of your own screens. Bye bye.
- Goto End
- :END
-