home *** CD-ROM | disk | FTP | other *** search
/ PC Format Collection 48 / SENT14D.ISO / tech / delphi / disk15 / inttab.pak / INIFILE.TXT < prev    next >
Encoding:
Text File  |  1995-08-24  |  3.6 KB  |  130 lines

  1. This file describes the entries in DELPHI.INI which do not appear
  2. in the Delphi environment as customizable options.
  3.  
  4. Following the reference section is a guide to adding vendor
  5. specific information to DELPHI.INI.
  6.  
  7.  
  8. Section: [Globals]
  9. ------------------
  10.  
  11. PrivateDir=
  12.  
  13.   This item controls where Delphi both creates and locates
  14.   selected files, such as the menu template file (DELPHI.DMT),
  15.   etc.  If you are running Delphi from a read-only directory (or
  16.   from a CD-ROM) this item should be set to a writable directory,
  17.   either on a network or local drive.  This item should contain a
  18.   fully qualified path, including the drive letter.
  19.  
  20.  
  21. HintColor=
  22.  
  23.   This item controls the color of the fly-by hint window for the
  24.   Delphi IDE.  The value may be a decimal or hex constant, or one
  25.   of the symbolic color constants defined in VCL (e.g. clCyan).
  26.   Note that the text in the hint window is painted using
  27.   clWindowText.
  28.  
  29. PropValueColor=
  30.  
  31.   This item controls the color of the text in the right-hand
  32.   (value) pane of the Object Inspector. The value may be a
  33.   decimal or hex constant, or one of the symbolic color constants
  34.   defined in VCL (e.g. clCyan).
  35.  
  36.  
  37. Section: [FormDesign]
  38. ---------------------
  39.  
  40. DefaultFont=
  41.  
  42.   This item controls the default font for new forms. Enter the
  43.   name of the font, the font size, and optionally the style of
  44.   the font, each separated by commas. (Supported font styles are
  45.   "bold" and "italic.")  E.g:
  46.  
  47.     DefaultFont=MS Sans Serif, 8, bold, italic
  48.  
  49.  
  50. Section: [Debugging]
  51. --------------------
  52.  
  53. NoResetWarning=
  54.  
  55.   Set to 1 to prevent Delphi from presenting a warning message
  56.   when Program Reset is selected.
  57.  
  58.  
  59. Section: [Gallery]
  60. ------------------
  61.  
  62. BaseDir=
  63.  
  64.   Points to the directory where Delphi attempts to find Gallery
  65.   files.  To share a gallery directory with other users, set this
  66.   item to point to (e.g.) a shared network directory.  This item
  67.   should contain a fully qualified path, including the drive
  68.   letter.
  69.  
  70.  
  71. Section: [Editor]
  72. -----------------
  73.  
  74. DefaultWidth=
  75. DefaultHeight=
  76.  
  77.   These two items, if present, control the default width and
  78.   height of the Delphi's Code Editor window when created.
  79.   Although Delphi does not update these values, it does read them
  80.   each time a Code Editor is created.
  81.  
  82.  
  83. Section: [Version Control]
  84. --------------------------
  85.  
  86. VCSManager=
  87.  
  88.   This item specifies the fully qualified path of a Version
  89.   Control manager DLL.  Delphi Client/Server, which includes team
  90.   support, supplies a Version Control manager by the name
  91.   STDVCS.DLL, located in the \BIN directory.  E.g:
  92.  
  93.     VCSManager=c:\delphi\bin\stdvcs.dll
  94.  
  95.  
  96. Section: [Experts]
  97. ------------------
  98.  
  99. ????=
  100.  
  101.   The Experts section lists the Experts which Delphi will attempt
  102.   to load and initialize upon startup.  Any value may be used on
  103.   the left of the equals sign, as the item name is not
  104.   interpreted. Borland recommends using a combination of the
  105.   vendor name and the product name. E.g:
  106.  
  107.      [Experts]
  108.      ComponentWare.CommExpert=c:\delphi\cware\commexpt.dll
  109.      CodeFast.TheExpert=c:\delphi\codefast\codefast.dll
  110.  
  111.  
  112.  
  113. Adding vendor-specific information to DELPHI.INI
  114. ------------------------------------------------
  115. When adding 3rd party information to DELPHI.INI, Borland
  116. recommends adding the information in sections which are named
  117. using a combination of the vendor name and the desired name
  118. of the section.  For example, if a company named CodeFast
  119. intended to store information in DELPHI.INI, the following naming
  120. would be appropriate:
  121.  
  122.  
  123. [CodeFast.DesignInfo]
  124. LastDesigner=1
  125. NextDesigner=0
  126.  
  127. [CodeFast.MetaTable]
  128. TableName=c:\meta\first.mtb
  129.  
  130.