home *** CD-ROM | disk | FTP | other *** search
/ The SelectWare System Volume 2 #3 / The_SelectWare_System_Series_1_Volume_2_Number_3_Selectware.iso / ven10003 / demo.bat < prev    next >
DOS Batch File  |  1990-09-07  |  3KB  |  76 lines

  1. echo off
  2. cls
  3. echo  
  4. echo  
  5. echo  
  6. echo  
  7. echo  
  8. echo  
  9. echo               Is this computer running at or faster than 16Mhz? (Y/N)
  10. INKEY Y y N n  
  11. cls
  12. echo  
  13. echo  
  14. echo  
  15. echo  
  16. echo  
  17. echo            ┌──────────────────────────────────────────────────────────┐
  18. echo            │                                                          │       
  19. echo            │      The FormBase 1.1 Demo will run continuously.        │       
  20. echo            │                                                          │
  21. echo            │      Press the «ESCAPE» key to return to the Main        │       
  22. echo            │      (NOTE: The screen will go blank for a moment)       │       
  23. echo            │                                                          │       
  24. echo            │      You may press the «SPACE BAR» to pause the show,    │       
  25. echo            │      to resume the show press the «ENTER» key.           │       
  26. echo            │                                                          │       
  27. echo            │      To end the demo, press «ESC» to bring up the        │       
  28. echo            │      Main Menu then press "Q" and «ENTER» to quit.       │   
  29. echo            │                                                          │  
  30. echo            └──────────────────────────────────────────────────────────┘      
  31. pause
  32. cls
  33. echo  
  34. echo  
  35. echo  
  36. echo  
  37. echo  
  38. echo  
  39. echo    ┌────────────────────────────────────────────────────────────────────────┐
  40. echo    │                                                                        │
  41. echo    │                                Please Wait                             │
  42. echo    │                                                                        │
  43. echo    │                          Program is being loaded                       │
  44. echo    │                                                                        │
  45. echo    └────────────────────────────────────────────────────────────────────────┘
  46. if errorlevel 4 goto SLOW
  47. if errorlevel 3 goto SLOW
  48. if errorlevel 2 goto FAST
  49. if errorlevel 1 goto FAST
  50. :SLOW
  51. :sTOP
  52. show menu /s=start /p=9
  53. CHKQUIT                 
  54. if errorlevel 1 goto Ok_End
  55. :sRESTART
  56. show menu /s=rollmenu /p=9
  57. CHKQUIT
  58. if errorlevel 1 goto Ok_End
  59. goto sRESTART
  60. :FAST
  61. :fTOP
  62. show menu /s=start /p=6
  63. CHKQUIT
  64. if errorlevel 1 goto Ok_End
  65. :fRESTART
  66. show menu /s=rollmenu /p=6
  67. CHKQUIT
  68. if errorlevel 1 goto Ok_End
  69. goto fRESTART
  70. :Ok_End
  71. mousectl on
  72. cls
  73.  
  74.  
  75.  
  76.