home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 9 / 09.iso / l / l045 / 2.ddi / README < prev    next >
Encoding:
Text File  |  1987-12-23  |  5.8 KB  |  195 lines

  1.  
  2.               WELCOME TO TURBO PASCAL GRAPHIX TOOLBOX 4.0
  3.               -------------------------------------------
  4.  
  5.   This README file provides information not contained in the Owner's
  6.   Handbook. Please read this file for the latest information about 
  7.   Turbo Pascal Graphix Toolbox.
  8.  
  9.  
  10. TABLE OF CONTENTS
  11. -----------------
  12.   1.  How to Get Help
  13.   2.  Corrections/Additions to the Handbook
  14.   3.  Files on the Disks
  15.  
  16.  
  17. 1.  HOW TO GET HELP
  18. -------------------
  19.   If you need help with Turbo Pascal Graphix Toolbox, please read
  20.   this file and the Owner's Handbook.
  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 forums with their libraries of
  27.        technical information and answers to common questions.  In
  28.        addition, all example programs from the manual are available on
  29.        CompuServe in machine-readable form.
  30.  
  31.     If you are not a member of CompuServe, see the enclosed special
  32.     offer, and write for full details on how to receive a free
  33.     IntroPak containing a $15 credit toward your first month's online
  34.     charges.
  35.  
  36.     2. Check with your local software dealer or users' group.
  37.  
  38.     3. Write to:  Borland International
  39.                   Turbo Pascal Graphix 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 that cannot wait, you can call
  47.        the Borland Technical 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
  52.           distribution disk. Please have your serial number ready or
  53.           we will be unable to process your call.
  54.  
  55.       B.  Computer brand, model, and the brands and model numbers of
  56.           any additional hardware.
  57.  
  58.       C.  Operating system and version number (the version number can
  59.           be 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. CORRECTIONS/ADDITIONS TO THE HANDBOOK
  67. ----------------------------------------
  68.  
  69.     Pg.33   Window Example
  70.  
  71.       SelectWindow(1) and SelectWorld(1) are in reversed order.
  72.       SelectWorld has to be called before SelectWindow.
  73.  
  74.  
  75.     Pg.83   File Containing CharFile
  76.  
  77.       CharFile can be altered in GDRIVER.PAS, not TYPEDEF.SYS.
  78.  
  79.  
  80.     Pg.84   MaxForeground for Hercules
  81.  
  82.       MaxForeground for Hercules is 1.
  83.  
  84.  
  85.     Pg.114  File Containing ResetAxis
  86.  
  87.       ResetAxis is located in GSHELL.PAS.
  88.  
  89.  
  90.     Pg.119  DrawCircleDirect Example
  91.  
  92.       DrawCircleDirect(100,100,100,true) draws a circle at screen
  93.       coordinates [100,100] with radius of 100 pixels, WITH
  94.       clipping at window boundaries.
  95.  
  96.  
  97.     Pg.142  Tracing of Errors
  98.  
  99.       There is no tracing of errors anymore.  If an error occurs,
  100.       you will see the type of error, but not the actual address
  101.       of the statement where the error was detected.
  102.  
  103.  
  104.     Pg.146  Type of GetErrorCode
  105.  
  106.       GetErrorCode is an integer, not a byte.
  107.  
  108.  
  109.     Pg.188  SetClippingOff
  110.  
  111.       Under Function it should read "SetClippingOff turns
  112.       clipping mode off."
  113.  
  114.  
  115.     Pg.199  Tracing of Errors
  116.  
  117.       There is no tracing of errors anymore.  If an error occurs,
  118.       you will see the type of error, but not the actual address
  119.       of the statement where the error was detected.
  120.  
  121.  
  122.     Pg.204  Spline Parameters
  123.  
  124.       X1 and XM are actual values, not index values.
  125.  
  126.  
  127.     Pg.208  TextDown Borders
  128.  
  129.       TextDown provides a margin at the top edge of a window.
  130.  
  131.  
  132.     Pg.209  TextLeft Borders
  133.  
  134.       TextLeft provides a margin at the right edge of a window.
  135.  
  136.  
  137.     Pg.210  TextRight Borders
  138.  
  139.       TextRight provides a margin at the left edge of a window.
  140.  
  141.  
  142.     Pg.211  TextUp Borders
  143.  
  144.       TextUp provides a margin at the bottom edge of a window.
  145.  
  146.  
  147.     Pg.213  WindowMode
  148.  
  149.       Under Function it should read "...TRUE if SetWindowModeOn
  150.       has been called, FALSE if SetWindowModeOff has been
  151.       called."
  152.  
  153.  
  154.     Pg.214  WindowSize
  155.  
  156.       The formula for WindowSize is (Y2 - Y1 + 1) * (X2 - X1 + 1).
  157.  
  158.  
  159.  
  160.     Pg.220  File Containing RamScreenInCard
  161.  
  162.       The variable RamScreenInCard is initialized in GRAFHGC.DVR.
  163.  
  164.  
  165.  
  166. 3. FILES ON THE DISKS
  167. ---------------------
  168.  
  169.     Disk (1):  GRAPHIX TOOLBOX
  170.     --------------------------
  171.     README   COM -  A program to display this file
  172.     TGINST   BAT  - Installation batch file
  173.     GKERNEL  PAS  - Main kernel routines for Graphix Toolbox
  174.     GDRIVER  PAS  - Gets correct device driver when "TGINST" is run,
  175.                     defaults to text explaining installation process
  176.     GWINDOW  PAS  - Unit which implements numerous Graphix Toolbox
  177.                     routines
  178.     GSHELL   PAS  - Unit which implements numerous Graphix Toolbox
  179.                     routines
  180.     FLOAT    INC  - Determines whether the 8087 chip is used or not
  181.     GRAF???? OBJ  - Object files for assembly language externals
  182.     GRAF???? DVR  - Device drivers for different graphics cards
  183.     GRAF???? ASM  - Source to assembly language external routines
  184.     ERROR    MSG  - Error messages file
  185.     ????     FON  - Different font files used by the Graphix Toolbox
  186.     TGDEMO   PAS  - Graphix Toolbox example program
  187.     HFIX     COM  - Hercules utility
  188.     README        - This file!
  189.  
  190.  
  191.     Disk (2):  EXAMPLE PROGRAMS
  192.     ---------------------------
  193.     ???????? PAS  - Example programs demonstrating different features in
  194.                     the Graphix Toolbox
  195.