home *** CD-ROM | disk | FTP | other *** search
/ TopWare Tools / TOOLS.iso / tools / top1332 / gepackt.exe / EXAM / GO_MDEMO.BAT < prev    next >
Encoding:
DOS Batch File  |  1994-02-16  |  1.5 KB  |  42 lines

  1. ECHO OFF
  2. echo This batch file uses MLITE.EXE, a bare-bones MSHOW.EXE, to show a
  3. echo series of screens.
  4. echo
  5. echo Only seven key strokes are recognized (F1 - Help does not function.)
  6. echo
  7. echo     PgUp or Up Arrow Key      Presents previous screen
  8. echo
  9. echo     PgDn or Down Arrow Key    Presents next screen
  10. echo
  11. echo     F5                        Toggles between monochrome and color
  12. echo
  13. echo     Return                    Presents next screen, or if on last
  14. echo       or <Enter>                screen, exits with DOS ERRORLEVEL = 0
  15. echo
  16. echo     Esc                       Exits with DOS ERRORLEVEL = 1
  17. echo
  18. echo Next, we're going to let this batch file change to the next higher
  19. echo level directory where MLITE.EXE resides and then run MLITE.
  20. echo 
  21. echo CD..
  22. echo C:\MDEMO MLITE EXAM\MESSAGE.MD
  23. PAUSE
  24. CD..
  25. MLITE EXAM\MESSAGE.MD
  26. IF ERRORLEVEL 1 GOTO END
  27. MDEMO
  28. :END
  29. CD EXAM
  30. CLS
  31. echo MLITE is designed to show a few expository screens about what
  32. echo presumebly will follow. It's ideal for those times when you wish to
  33. echo give the user some information without mucking up your program proper.
  34. echo Here we just presented a few screens about MakeDemo and shareware. As
  35. echo with MSHOW.EXE, you can combine presentations into single .EXE
  36. echo executibles. We left them separate in this distribution so you may
  37. echo look at MESSAGE.MD, another MakeDemo presentation.
  38. echo
  39. echo Thank you for looking at MakeDemo. We would like to count you among
  40. echo our many satisfied customers.
  41.  
  42.