home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 16 / 16.iso / w / w048 / 1.ddi / README < prev   
Encoding:
Text File  |  2003-05-02  |  6.1 KB  |  176 lines

  1.  
  2.            WELCOME TO TURBO PASCAL EDITOR TOOLBOX 4.0
  3.            ------------------------------------------
  4.  
  5.   Welcome to the Turbo Pascal Editor Toolbox. We have provided the
  6.   following information to aid you in using the Toolbox; please read
  7.   it in its entirety.
  8.  
  9.   TABLE OF CONTENTS
  10.   -----------------
  11.   1) How to Get Help
  12.   2) How to Use UNPACK.COM
  13.   3) Manual Additions/Changes
  14.   4) Files on the Disks
  15.  
  16.  
  17. 1. HOW TO GET HELP
  18. ------------------
  19.   If you need help with the Turbo Pascal Editor Toolbox, please read
  20.   this file and the accompanying manual.
  21.  
  22.   If you still have a question and need technical assistance, help is
  23.   available from the following sources:
  24.  
  25.   1. Type GO BPROGA on the CompuServe bulletin board system for
  26.   instant access to the Borland Turbo Pascal forums. The forums
  27.   contain libraries of technical information and answers to common
  28.   questions.
  29.  
  30.   If you are not a member of CompuServe, take a look at the enclosed
  31.   special offer. You can write for full details on how to receive a
  32.   free IntroPak containing a $15 credit toward your first month's
  33.   online charges.
  34.  
  35.   2. Check with your local software dealer or users' group.
  36.  
  37.   3. Write to:
  38.        Borland International
  39.        Turbo Pascal Editor Toolbox Technical Support
  40.        4585 Scotts Valley Drive
  41.        Scotts Valley, CA 95066
  42.  
  43.   Please remember to include your serial number or we will be unable
  44.   to process your letter.
  45.  
  46.   4. If you have an urgent problem, you can call the Borland Technical
  47.   Support Department at (408) 438-5300.
  48.  
  49.   Please have the following information ready before calling:
  50.  
  51.   A. Product name and serial number from your original distribution
  52.      disk. We'll need your serial number in order to process your
  53.      call.
  54.  
  55.   B. Computer brand, model, and the brands and model numbers of any
  56.      additional hardware.
  57.  
  58.   C. Operating system and version number. (The version number can be
  59.      determined by typing VER at the DOS prompt.)
  60.  
  61.   D. Contents of your AUTOEXEC.BAT file.
  62.  
  63.   E. Contents of your CONFIG.SYS file.
  64.  
  65.  
  66. 2. HOW TO USE UNPACK
  67. --------------------
  68.   For instructions about using the UNPACK program, type UNPACK at
  69.   the DOS command line. A menu of options will be displayed.
  70.  
  71.   The UNPSRC.BAT and the EDUNPACK.BAT files on disks 2 and 3 will
  72.   unpack MicroStar and First-Ed source code for both floppy and
  73.   hard disk systems.
  74.  
  75.   When unpacking the .ARC files on the EDITOR TOOLBOX disk you
  76.   may notice that the files ERRORS.PAS and EDCMDS.INC exist in
  77.   more than one file. The files are identical.
  78.  
  79.  
  80. 3. MANUAL ADDITIONS/CHANGES
  81. ---------------------------
  82.   P-57 The description for Quit (Abandon file) should read:
  83.  
  84.   Ends the editing session and returns you to DOS. If any windows have
  85.   been modified, prompt boxes will appear and you will be able to save
  86.   each modified file. If you type <Esc> at any of the prompt boxes,
  87.   the FILE QUIT command will be interrupted, and you will be returned
  88.   to the current text window.
  89.  
  90.   P-57 The description for Save and exit to DOS should read:
  91.  
  92.   Ends the editing session and returns you to DOS. If any windows have
  93.   been modified, the files will be saved automatically.
  94.  
  95.   P-74 In the discussion on 43-line mode, note that MicroStar now
  96.     supports 25-, 43-, and 50-line modes. The 43-line mode is
  97.     available on EGA and compatible adapters; the 50 line mode is
  98.     available on VGA and compatible adapters.
  99.  
  100.   P-190 The batch file that compiles MicroStar on a floppy-based
  101.     system is now named MSBUILD.BAT. On P-190-191, change every
  102.     reference to COMPILE.BAT or COMPILE to MSBUILD.BAT. In addition, a
  103.     similar batch file, EDBUILD.BAT, is now provided to compile
  104.     First-Ed on a floppy-based system.
  105.  
  106.   P-190 In the discussion on recompiling MicroStar, note that the
  107.     file MsDirect.inc contains two sets of compiler directives: one
  108.     set of directives for debugging, one for a normal build.
  109.  
  110.     If you are not changing and debugging MicroStar, don't specify any
  111.     conditional defines when you build MS.PAS. For example, type
  112.  
  113.      TPC MS /B
  114.  
  115.     to build MicroStar with no debug information. However, if you are
  116.     modifying and debugging MicroStar, specify "debug" as a conditional
  117.     define when building MS.PAS (refer to OPTIONS\COMPILER\CONDITIONAL
  118.     DEFINES in the integrated environment, or use the /D option when
  119.     using TPC.EXE).
  120.  
  121.     For more information, refer to MsDirect.Inc in the MicroStar
  122.     source archive on disk 2 (MSSRC.ARC).
  123.  
  124.     The above discussion applies to First-Ed as well. (The compiler
  125.     directives for ED.PAS are kept in an include file named
  126.     EDDIRECT.INC.)
  127.  
  128.   P-258 New function
  129.  
  130.     CheckCurwinModified       [MSFILE]
  131.  
  132.     Declaration    function CheckCurwinModified : boolean;
  133.  
  134.     Source File    MSFILE.PAS
  135.  
  136.     Function       Checks whether current window is modified, and if
  137.                    so, prompts you to save it.
  138.  
  139.     Remarks        CheckCurwinModified returns False if the user
  140.                    escapes out of any prompt; otherwise it returns
  141.                    True.
  142.  
  143.   P-421 Modified description
  144.  
  145.     EdWriteNamedFile  [EDMAIN, MSFILE]
  146.  
  147.     Declaration    function EdWriteNamedFile : Boolean;
  148.  
  149.     Source File    EDMAIN.PAS, MSFILE.PAS
  150.  
  151.     Remarks        EdWriteNamedFile returns True if it wrote the file,
  152.                    False if the user aborted the operation while being
  153.                    prompted for a file name.
  154.  
  155.  
  156. 4. FILES ON THE DISKS
  157. ---------------------
  158.  
  159.   DISK 1:  MICROSTAR
  160.   ------------------
  161.   README   COM - Program to display this file
  162.   MS       EXE - MicroStar executable program
  163.   MS       HLP - Binary help file for MicroStar
  164.   MS       MAC - Default macro file for MicroStar
  165.   MSINST   EXE - MicroStar installation program
  166.   MS       TXT - Text file used by MSINST
  167.   ???????? PDF - printer description files
  168.   README       - This file!
  169.  
  170.   DISK 2: MICROSTAR SOURCE
  171.   -------------------------
  172.   UNPSRC   BAT - Batch file to de-archive MSSRC.ARC
  173.   MSSRC    ARC - Archived source code for MicroStar
  174.   UNPACK   COM - Program to de-archive source code
  175.  
  176.