home *** CD-ROM | disk | FTP | other *** search
/ World of Shareware - Software Farm 2 / wosw_2.zip / wosw_2 / DATABASE / DBAT110.ZIP / MENU5.BAT < prev    next >
DOS Batch File  |  1992-01-10  |  970b  |  32 lines

  1. @echo off
  2. :: *** dBAT Menu Demo #5 ***    :: Turn off the echo (use @ if DOS3.3 or +)
  3. :: This example simply paints the screen... other .BATs run the programs
  4. ::c:
  5. ::cd \
  6. :: Note: Must pass full path if running from another directory
  7. ::       ie. dBAT doesn't search the PATH for the batch file
  8. DBAT %0
  9. goto ENDdBAT
  10.  
  11. PROC dBAT
  12. SET COLOR TO 7              && White on black ( for colors run COLOR.COM )
  13. CLEAR                       && Clear the screen with a blue background
  14. SET COLOR TO 31             && Bright white on blue
  15. @ 00,02 TO 20,77 DOUBLE
  16. @ 01,03 CLEAR TO 19,76
  17. @ 02,10 TO 04,69
  18. SET COLOR TO 79
  19. @ 03,11 CLEAR TO 03,68
  20. @ 03,36 ?? "M E N U"
  21. SET COLOR TO 31
  22. @ 06,28 ?? "A...General Ledger"
  23. @ 07,28 ?? "B...Payroll"
  24. @ 08,28 ?? "C...Lotus 123"
  25. @ 09,28 ?? "D...Professional Write"
  26. @ 10,28 ?? "E...S/36 & PC Support Menu"
  27. @ 11,28 ?? "V...Voice Mail"
  28. SET COLOR TO 27
  29. @ 18,05 ?? "Type your selection and press ENTER ..."
  30. @ 21,00
  31. :ENDdBAT
  32.