home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #1 / monster.zip / monster / GRAPHICS / MDEM5A.ZIP / EXAM / GO_SHOW.BAT next >
DOS Batch File  |  1994-03-31  |  2KB  |  65 lines

  1. echo off
  2. CLS
  3. echo GO_SHOW.BAT
  4. echo First, we are going to present an overview, WATCH_ME.1ST of MakeDemo
  5. echo using the MakeDemo runtime, MSHOW.EXE. This first time MSHOW will
  6. echo create an index to disk of WATCH_ME.1ST, a small file named
  7. echo WATCH_ME.INX, that speeds up MSHOW in finding screens during use.
  8. echo
  9. echo To view this presentation, this batch file will retreat to the next
  10. echo higher level directory where MSHOW.EXE resides and then run MSHOW.
  11. echo
  12. echo C:\MDEMO CD..
  13. echo C:\MDEMO MSHOW EXAM\WATCH_ME.1ST
  14. echo
  15. PAUSE
  16. CD..
  17. MSHOW EXAM\WATCH_ME.1ST
  18. CLS
  19. echo GO_SHOW.BAT (continued)
  20. echo Now, to show how easy it is to create a single file .EXE executible
  21. echo from a presentation file, we're going to use the MakeDemo utility,
  22. echo WWP_MAKE.EXE to produce DEMO.EXE. This single .EXE file combines three
  23. echo files into one: MSHOW.EXE, WATCH_ME.1ST, and WATCH_ME.INX.
  24. echo
  25. echo Our intent was to conserve file space in the MakeDemo distribution and
  26. echo at the same time give you the opportunity later to investigate how we
  27. echo designed menus, and hid "Help," Order Form, etc.
  28. echo
  29. echo In addition, we're going to "brand" DEMO.EXE with a seed number of
  30. echo 1234567 and an assigned a serial number of 1000. If the correct
  31. echo validation code, in this case - 2236 - is used as the command line
  32. echo argument, a "shareware" screen buried in presentation will not appear.
  33. echo
  34. echo Those interested in branding can find the details in MDEMO F1 Help.
  35. echo
  36. echo C:\MDEMO WWP_MAKE MSHOW.EXE EXAM\DEMO.EXE EXAM\WATCH_ME.1ST 1234567,1000
  37. echo
  38. PAUSE
  39. WWP_MAKE MSHOW.EXE EXAM\DEMO.EXE EXAM\WATCH_ME.1ST 1234567,1000
  40. echo
  41. echo That was quick.
  42. echo
  43. echo Because we created DEMO.EXE in the EXAM subdirectory, we're now going
  44. echo to first change to it and then run the single .EXE file
  45. echo
  46. echo C:\MDEMO CD EXAM
  47. echo
  48. echo Now let's see the result!!
  49. echo
  50. echo C:\MDEMO\EXAM DEMO 2236
  51. echo
  52. PAUSE
  53. CD EXAM
  54. DEMO 2236
  55. CLS
  56. echo GO_SHOW.BAT (continued)
  57. echo Now to see the presentation again, this time with the 'shareware'
  58. echo screen found after the 8th screen, we'll leave off the validation code.
  59. echo
  60. echo C:\MDEMO\EXAM DEMO
  61. echo
  62. PAUSE
  63. DEMO
  64. CLS
  65.