home *** CD-ROM | disk | FTP | other *** search
/ TopWare Tools / TOOLS.iso / tools / top1332 / gepackt.exe / EXAM / GO_SHOW.BAT < prev    next >
Encoding:
DOS Batch File  |  1994-02-16  |  2.0 KB  |  54 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 change to the next
  10. echo higher level directory where MSHOW.EXE resides and then run MSHOW.
  11. echo 
  12. echo CD..
  13. echo C:\MDEMO MSHOW EXAM\WATCH_ME.1ST
  14. PAUSE
  15. CD..
  16. MSHOW EXAM\WATCH_ME.1ST
  17. CLS
  18. echo GO_SHOW.BAT (continued)
  19. echo Now, to show how easy it is to create a single file .EXE executible
  20. echo from a presentation file, we're going to use the MakeDemo utility,
  21. echo WWP_MAKE.EXE to produce DEMO.EXE. This single .EXE file combines three
  22. echo files into one: MSHOW.EXE, WATCH_ME.1ST, and WATCH_ME.INX.
  23. echo
  24. echo Our intent was to conserve file space in the MakeDemo distribution and
  25. echo at the same time give you the opportunity later to investigate how we
  26. echo designed menus, and hid "Help," Order Form, etc.
  27. echo
  28. echo In addition, we're going to "brand" DEMO.EXE with a seed number of
  29. echo 1234567 and an assigned a serial number of 1000. If the correct
  30. echo validation code, in this case - 2236 - is used as the command line
  31. echo argument, a "shareware" screen buried in presentation will not appear.
  32. echo
  33. echo Those interested in branding can find the details in MANUAL.TXT.
  34. echo
  35. echo C:\MDEMO WWP_MAKE MSHOW.EXE EXAM\DEMO.EXE EXAM\WATCH_ME.1ST 1234567,1000
  36. PAUSE
  37. WWP_MAKE MSHOW.EXE EXAM\DEMO.EXE EXAM\WATCH_ME.1ST 1234567,1000
  38. echo That was quick. Now let's see the result!!
  39. echo
  40. echo C:\MDEMO EXAM\DEMO 2236
  41. PAUSE
  42. CD EXAM
  43. DEMO 2236
  44. CLS
  45. echo GO_SHOW.BAT (continued)
  46. echo Now to see the presentation again, this time with the 'shareware'
  47. echo screen found in the "Branding Your Creation" menu selection, we'll
  48. echo leave off the validation code.
  49. echo
  50. echo C:\MDEMO DEMO
  51. PAUSE
  52. DEMO
  53. CLS
  54.