home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 March / Chip_1998-03_cd.bin / zkuste / delphi / ruzkomp / INMEMDEL.ZIP / About.dfm / About.txt
Encoding:
Text File  |  1997-03-19  |  2.6 KB  |  108 lines

  1. object AboutBox: TAboutBox
  2.   Left = 247
  3.   Top = 393
  4.   ActiveControl = OKButton
  5.   BorderStyle = bsDialog
  6.   Caption = 'About In-Meory Table Exmaple'
  7.   ClientHeight = 277
  8.   ClientWidth = 349
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   Position = poScreenCenter
  14.   PixelsPerInch = 96
  15.   TextHeight = 13
  16.   object Panel1: TPanel
  17.     Left = 8
  18.     Top = 8
  19.     Width = 333
  20.     Height = 229
  21.     BevelInner = bvRaised
  22.     BevelOuter = bvLowered
  23.     Enabled = False
  24.     ParentColor = True
  25.     TabOrder = 0
  26.     object ProductName: TLabel
  27.       Left = 12
  28.       Top = 16
  29.       Width = 258
  30.       Height = 16
  31.       Caption = 'Program: Delphi in-Memory Table Example'
  32.       Font.Color = clWindowText
  33.       Font.Height = -13
  34.       Font.Name = 'MS Sans Serif'
  35.       Font.Style = []
  36.       ParentFont = False
  37.       IsControl = True
  38.     end
  39.     object Version: TLabel
  40.       Left = 12
  41.       Top = 40
  42.       Width = 76
  43.       Height = 16
  44.       Caption = 'Version: 3.12'
  45.       Font.Color = clWindowText
  46.       Font.Height = -13
  47.       Font.Name = 'MS Sans Serif'
  48.       Font.Style = []
  49.       ParentFont = False
  50.       IsControl = True
  51.     end
  52.     object Comments: TLabel
  53.       Left = 12
  54.       Top = 64
  55.       Width = 67
  56.       Height = 16
  57.       Caption = 'Comments:'
  58.       Font.Color = clWindowText
  59.       Font.Height = -13
  60.       Font.Name = 'MS Sans Serif'
  61.       Font.Style = []
  62.       ParentFont = False
  63.       WordWrap = True
  64.       IsControl = True
  65.     end
  66.     object Memo1: TMemo
  67.       Left = 8
  68.       Top = 84
  69.       Width = 319
  70.       Height = 143
  71.       BorderStyle = bsNone
  72.       Color = clBtnFace
  73.       Lines.Strings = (
  74.         'This exmaple demonstrated how to use In-Memory tables in Delphi.'
  75.         'This program will take the table that is connected to the '
  76.         'DemoTable TTable object on the main form and place all the '
  77.         
  78.           'information into the In-Memory table (if possible).  Only logica' +
  79.           'l field'
  80.         
  81.           'types are supported (string, int16, int32, float, time, date, ti' +
  82.           'mestamp).'
  83.         ''
  84.         'If the table could be created and filled with information, the'
  85.         
  86.           'information is then extracted from the In-Memory table and place' +
  87.           'd'
  88.         
  89.           'into the string grid.  The grid is sized to hold the information' +
  90.           ' in the '
  91.         'columns.')
  92.       ReadOnly = True
  93.       TabOrder = 0
  94.       WordWrap = False
  95.     end
  96.   end
  97.   object OKButton: TButton
  98.     Left = 135
  99.     Top = 244
  100.     Width = 75
  101.     Height = 25
  102.     Caption = 'OK'
  103.     Default = True
  104.     ModalResult = 1
  105.     TabOrder = 1
  106.   end
  107. end
  108.