home *** CD-ROM | disk | FTP | other *** search
/ ftp.wwiv.com / ftp.wwiv.com.zip / ftp.wwiv.com / pub / BBS / W3_BBS.ZIP / LOADER.BTM < prev    next >
Text File  |  1990-10-26  |  1KB  |  46 lines

  1. cls
  2. @echo off
  3. drawbox 0 0 18 24 2 bright white on blue fill blue
  4. drawhline 3 0 25 3 bright white on blue
  5. beep 440 4 600 2 1040 6
  6. scrput 1 6 Bright White on blue -=*Boot Menu=-
  7. scrput 2 5 blink white on blue **SPECTRUM BBS**
  8. scrput 4 3 Bright white on blue Date: %_DATE
  9. scrput 5 3 bright white on blue Time: %_TIME
  10. scrput 6 3 Bright white on blue CPU : %_CPU
  11. scrput 7 3 bright white on blue Copr: %_NDP
  12. scrput 8 3 bright white on blue DOS : %_DOSVER
  13. drawhline 9 0 25 3 bright white on blue
  14. scrput 10 1 bright white on blue        Options:
  15. drawhline 11 1 24 1 bright white on blue
  16. scrput 12 1 bright yellow on blue 1. Windows 3.0 (Enh)
  17. scrput 13 1 bright yellow on blue 2. Desqview 2.32 (386)
  18. scrput 14 1 bright yellow on blue 3. 4dos 2.03
  19. scrput 16 2 bright white on blue PRESS # KEY FOR DEST.
  20. scrput 17 1 blink bright green on cyan Or wait 5 sec. for WIN3
  21. set dest = N
  22. inkey /w7 %%dest
  23. if "%dest" == "3" goto load_4dos
  24. if "%dest" == "2" goto load_dv
  25. if "%dest" == "1" goto load_win
  26. if "%dest" == "N" goto load_win
  27.  
  28. :load_4dos
  29.  cls
  30.  quit
  31. :load_dv
  32.  cls
  33.  dv
  34.  quit
  35. :load_win
  36.  cls
  37.  win
  38.  quit
  39.  
  40. rem end of loader program
  41.  
  42.  
  43.  
  44.  
  45.  
  46.