home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 9 / CDACTUAL9.iso / progs / CB / DATA.Z / COLEDIT.DFM / COLEDIT.txt
Encoding:
Text File  |  1995-09-29  |  3.4 KB  |  176 lines

  1. object GridColEditor: TGridColEditor
  2.   Left = 224
  3.   Top = 165
  4.   ActiveControl = ColumnList
  5.   BorderStyle = bsDialog
  6.   Caption = 'DBGrid Columns Editor'
  7.   ClientHeight = 210
  8.   ClientWidth = 393
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   PixelsPerInch = 96
  14.   Position = poScreenCenter
  15.   OnCreate = FormCreate
  16.   TextHeight = 13
  17.   object HelpButton: TButton
  18.     Left = 310
  19.     Top = 176
  20.     Width = 75
  21.     Height = 25
  22.     Caption = '&Help'
  23.     TabOrder = 5
  24.   end
  25.   object ApplyButton: TButton
  26.     Left = 230
  27.     Top = 176
  28.     Width = 75
  29.     Height = 25
  30.     Caption = '&Apply'
  31.     Enabled = False
  32.     TabOrder = 4
  33.     OnClick = ApplyButtonClick
  34.   end
  35.   object CancelButton: TButton
  36.     Left = 150
  37.     Top = 176
  38.     Width = 75
  39.     Height = 25
  40.     Cancel = True
  41.     Caption = 'Cancel'
  42.     TabOrder = 3
  43.     OnClick = CancelButtonClick
  44.   end
  45.   object OkButton: TButton
  46.     Left = 70
  47.     Top = 176
  48.     Width = 75
  49.     Height = 25
  50.     Caption = 'OK'
  51.     Default = True
  52.     TabOrder = 2
  53.     OnClick = OkButtonClick
  54.   end
  55.   object GroupBox2: TGroupBox
  56.     Left = 152
  57.     Top = 4
  58.     Width = 233
  59.     Height = 157
  60.     Caption = 'Column properties'
  61.     TabOrder = 1
  62.     object Label1: TLabel
  63.       Left = 12
  64.       Top = 45
  65.       Width = 53
  66.       Height = 13
  67.       Caption = '&FieldName:'
  68.     end
  69.     object Label2: TLabel
  70.       Left = 12
  71.       Top = 71
  72.       Width = 31
  73.       Height = 13
  74.       Caption = '&Width:'
  75.       FocusControl = ColWidth
  76.     end
  77.     object Label3: TLabel
  78.       Left = 12
  79.       Top = 97
  80.       Width = 27
  81.       Height = 13
  82.       Caption = '&Color:'
  83.     end
  84.     object Label4: TLabel
  85.       Left = 12
  86.       Top = 19
  87.       Width = 23
  88.       Height = 13
  89.       Caption = '&Title:'
  90.     end
  91.     object ColWidth: TEdit
  92.       Left = 80
  93.       Top = 68
  94.       Width = 137
  95.       Height = 21
  96.       TabOrder = 2
  97.       OnChange = EditChange
  98.       OnExit = ControlExit
  99.     end
  100.     object ColTitle: TEdit
  101.       Left = 80
  102.       Top = 16
  103.       Width = 137
  104.       Height = 21
  105.       TabOrder = 0
  106.       OnChange = EditChange
  107.       OnExit = ControlExit
  108.     end
  109.     object FieldName: TComboBox
  110.       Left = 80
  111.       Top = 42
  112.       Width = 137
  113.       Height = 21
  114.       ItemHeight = 13
  115.       TabOrder = 1
  116.       OnChange = EditChange
  117.       OnDropDown = FieldNameDropDown
  118.       OnExit = ControlExit
  119.     end
  120.     object ColColor: TComboBox
  121.       Left = 80
  122.       Top = 94
  123.       Width = 137
  124.       Height = 21
  125.       ItemHeight = 13
  126.       TabOrder = 3
  127.       OnChange = EditChange
  128.       OnDblClick = ColColorDblClick
  129.       OnDropDown = ColColorDropDown
  130.       OnExit = ControlExit
  131.     end
  132.   end
  133.   object GroupBox1: TGroupBox
  134.     Left = 8
  135.     Top = 4
  136.     Width = 137
  137.     Height = 157
  138.     Caption = '&Columns'
  139.     TabOrder = 0
  140.     object ColumnList: TListBox
  141.       Left = 8
  142.       Top = 16
  143.       Width = 121
  144.       Height = 101
  145.       ItemHeight = 13
  146.       TabOrder = 0
  147.       OnClick = ColumnListClick
  148.       OnDragDrop = ColumnListDragDrop
  149.       OnDragOver = ColumnListDragOver
  150.       OnMouseDown = ColumnListMouseDown
  151.     end
  152.     object NewButton: TButton
  153.       Left = 8
  154.       Top = 124
  155.       Width = 57
  156.       Height = 25
  157.       Caption = '&New'
  158.       TabOrder = 1
  159.       OnClick = NewButtonClick
  160.     end
  161.     object DeleteButton: TButton
  162.       Left = 72
  163.       Top = 124
  164.       Width = 57
  165.       Height = 25
  166.       Caption = '&Delete'
  167.       TabOrder = 2
  168.       OnClick = DeleteButtonClick
  169.     end
  170.   end
  171.   object ColorDialog1: TColorDialog
  172.     Left = 200
  173.     Top = 92
  174.   end
  175. end
  176.