home *** CD-ROM | disk | FTP | other *** search
/ The Devil's Doorknob BBS Capture (1996-2003) / devilsdoorknobbbscapture1996-2003.iso / Dloads / OTHERUTI / MASTER-1.ZIP / README.TXT < prev   
Text File  |  1992-09-29  |  4KB  |  117 lines

  1.  
  2.  
  3. Thank You!
  4. ----------
  5.  
  6. Thank you for purchasing Secrets of the Borland C++ Masters
  7. from Sams Books.
  8.  
  9.  
  10. About The Diskettes
  11. -------------------
  12.  
  13. DISK 1 contains the source code examples from Secrets of the
  14. Borland C++ Masters, plus the MR_ED text editor, 4PRINT
  15. utility, and the ARTOOL drawing program.  You may copy any of
  16. the programs to your harddisk using the DOS COPY command or
  17. XCOPY utility program.  Most programs are stored in a
  18. compressed form.  Some programs, such as MR_ED will
  19. decompress themselves automatically.  Most of the programs,
  20. though, require the use of the LHA decompression utility,
  21. described below.  DISK 2 contains additional programs and
  22. utilities.  These programs likewise require the use of the LHA
  23. decompression utility.
  24.  
  25.  
  26. The \SOURCE Source Code Subdirectory
  27. ------------------------------------
  28.  
  29. The source code is organized into separate subdirectories, by
  30. chapter, within the \SOURCE subdirectory.  Hence, the source
  31. code for chapter 5 is located in \SOURCE\CHAP05.  Please note
  32. that not all chapters in the book have source code so not all
  33. chapters are represented in the \SOURCE subdirectory.
  34.  
  35. You may copy the contents of either disk to your harddisk
  36. by using the DOS XCOPY command.  Assuming that you have
  37. inserted the diskette in drive A, you may type:
  38.  
  39.      XCOPY A:\*.* x:\subdirectory /s
  40.  
  41. where x: is the hard disk drive letter, and \subdirectory
  42. is the directory where you wish to have the filed
  43. copied.
  44.  
  45. A variety of subdirectories were used during the creation of
  46. this book.  Hence, if you wish to use any of the include .prj
  47. project files, you will need to edit the project lists to
  48. locate the proper files.
  49.  
  50. When compiling the graphics program examples, you must create
  51. a project file and include the Borland supplied graphics.lib
  52. library.
  53.  
  54.  
  55. Decompressing the Files
  56. -----------------------
  57.  
  58. The source files are stored in a compressed file format.
  59. Use the LHA.EXE utility program, provided on the diskette
  60. and copied to your destination directory, to decompress the
  61. files.  I recommend that you copy LHA.EXE to a subdirectory
  62. that is already in your DOS PATH statement so that you can
  63. quickly access LHA just by typing the LHA program name.
  64.  
  65. To decompress the files, switch to the subdirectory you
  66. wish to use and type:
  67.  
  68.         LHA E ARCHIVE.LZH
  69.  
  70. where LHA is the name of the archive utility, E is a command
  71. line option to extract files from the archive, and
  72. ARCHIVE.LZH represents the name of the archive file
  73. containing the source code.
  74.  
  75. For example, to decompress the files in chapter 5, switch to
  76. the source\chap05 directory, and run the LHA program as:
  77.  
  78.         LHA E CHAP05.LZH
  79.  
  80.  
  81. About LHA
  82. ---------
  83.  
  84. LHA Version 2.12 is a data compression utility program,
  85. Copyright (c) Haruyasu Yoshizaki, 1988-1991.  While the
  86. program is copyrighted, it has been graciously contributed
  87. to the public domain for use by all computer users.   The
  88. program may be freely distributed subject to the restrictions
  89. provided in the file LHA213.DOC.  To access all the LHA
  90. files, run the self-decompressing LHA213.EXE program.
  91.  
  92. LHA compresses files into the .LZH archive file format.  By
  93. choosing appropriate command lines switches, you can
  94. compress, decompress and manage all of the files in the
  95. archive.  For information on using the utility, see
  96. LHA213.DOC.  For a brief description of command line
  97. switches, type:
  98.      LHA -?
  99.  
  100.  
  101. The sample programs are not guaranteed
  102. --------------------------------------
  103.  
  104. The sample programs are provided solely to illustrate
  105. programming concepts described in the text.  These sample
  106. programs are not intended nor warranted in any way for use
  107. in production programs or applications.  In particular, all
  108. the programs have been reviewed by several professional
  109. software engineers, however these programs have not be
  110. subjected to the rigorous testing of a professional
  111. software quality assurance organization.  While you are
  112. welcome to use the routines in your own applications, you
  113. have the sole responsibility to determine if the routines are
  114. appropriate for your application and that they perform to
  115. your satisfaction.
  116.  
  117.