home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1997 May / Pcwk0597.iso / borland / cb / setup / cbuilder / data.z / COLEDIT.DFM / COLEDIT.txt
Text File  |  1997-02-28  |  4KB  |  191 lines

  1. object ListViewColumns: TListViewColumns
  2.   Left = 196
  3.   Top = 154
  4.   ActiveControl = ColumnListBox
  5.   BorderStyle = bsDialog
  6.   Caption = 'ListView Columns Editor'
  7.   ClientHeight = 199
  8.   ClientWidth = 385
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   Position = poScreenCenter
  14.   OnCreate = FormCreate
  15.   OnDestroy = FormDestroy
  16.   PixelsPerInch = 96
  17.   TextHeight = 13
  18.   object ColumnGroupBox: TGroupBox
  19.     Left = 3
  20.     Top = 6
  21.     Width = 156
  22.     Height = 147
  23.     Caption = '&Columns'
  24.     TabOrder = 0
  25.     object ColumnListBox: TListBox
  26.       Left = 18
  27.       Top = 15
  28.       Width = 120
  29.       Height = 85
  30.       ItemHeight = 13
  31.       TabOrder = 0
  32.       OnClick = ColumnListBoxClick
  33.       OnDragDrop = ColumnListBoxDragDrop
  34.       OnDragOver = ColumnListBoxDragOver
  35.       OnEndDrag = ColumnListBoxEndDrag
  36.       OnMouseDown = ColumnListBoxMouseDown
  37.       OnStartDrag = ColumnListBoxStartDrag
  38.     end
  39.     object New: TButton
  40.       Left = 19
  41.       Top = 111
  42.       Width = 53
  43.       Height = 25
  44.       Caption = '&New'
  45.       Default = True
  46.       TabOrder = 1
  47.       OnClick = NewClick
  48.     end
  49.     object Delete: TButton
  50.       Left = 83
  51.       Top = 110
  52.       Width = 53
  53.       Height = 25
  54.       Caption = '&Delete'
  55.       TabOrder = 2
  56.       OnClick = DeleteClick
  57.     end
  58.   end
  59.   object PropGroupBox: TGroupBox
  60.     Left = 169
  61.     Top = 6
  62.     Width = 211
  63.     Height = 147
  64.     Caption = 'Column Properties'
  65.     Enabled = False
  66.     TabOrder = 1
  67.     object Label1: TLabel
  68.       Left = 11
  69.       Top = 26
  70.       Width = 39
  71.       Height = 13
  72.       Caption = 'Ca&ption:'
  73.       FocusControl = TextEdit
  74.     end
  75.     object Label4: TLabel
  76.       Left = 11
  77.       Top = 52
  78.       Width = 49
  79.       Height = 13
  80.       Caption = 'A&lignment:'
  81.       FocusControl = AlignmentEdit
  82.     end
  83.     object TextEdit: TEdit
  84.       Left = 65
  85.       Top = 22
  86.       Width = 134
  87.       Height = 21
  88.       TabOrder = 0
  89.       OnChange = ValueChanged
  90.       OnExit = TextEditExit
  91.     end
  92.     object AlignmentEdit: TComboBox
  93.       Left = 65
  94.       Top = 49
  95.       Width = 134
  96.       Height = 21
  97.       Style = csDropDownList
  98.       ItemHeight = 13
  99.       Items.Strings = (
  100.         'Left Justify'
  101.         'Right Justify'
  102.         'Center')
  103.       TabOrder = 1
  104.       OnChange = ValueChanged
  105.       OnExit = AlignmentEditExit
  106.     end
  107.     object GroupBox1: TGroupBox
  108.       Left = 11
  109.       Top = 74
  110.       Width = 191
  111.       Height = 67
  112.       Caption = '&Width'
  113.       TabOrder = 2
  114.       object WidthEdit: TEdit
  115.         Left = 10
  116.         Top = 25
  117.         Width = 60
  118.         Height = 21
  119.         TabOrder = 0
  120.         OnChange = ValueChanged
  121.         OnExit = WidthEditExit
  122.       end
  123.       object HWidthBtn: TRadioButton
  124.         Left = 86
  125.         Top = 27
  126.         Width = 90
  127.         Height = 17
  128.         Caption = '&Header Width'
  129.         TabOrder = 1
  130.         OnClick = HWidthBtnClick
  131.       end
  132.       object IWidthBtn: TRadioButton
  133.         Left = 86
  134.         Top = 44
  135.         Width = 81
  136.         Height = 17
  137.         Caption = '&Item Width'
  138.         TabOrder = 2
  139.         OnClick = HWidthBtnClick
  140.       end
  141.       object WidthBtn: TRadioButton
  142.         Left = 86
  143.         Top = 9
  144.         Width = 92
  145.         Height = 17
  146.         Caption = 'Width &Value'
  147.         TabOrder = 3
  148.         OnClick = HWidthBtnClick
  149.       end
  150.     end
  151.   end
  152.   object Ok: TButton
  153.     Left = 30
  154.     Top = 162
  155.     Width = 75
  156.     Height = 25
  157.     Caption = 'OK'
  158.     ModalResult = 1
  159.     TabOrder = 2
  160.   end
  161.   object Cancel: TButton
  162.     Left = 118
  163.     Top = 162
  164.     Width = 75
  165.     Height = 25
  166.     Cancel = True
  167.     Caption = 'Cancel'
  168.     ModalResult = 2
  169.     TabOrder = 3
  170.   end
  171.   object Apply: TButton
  172.     Left = 207
  173.     Top = 162
  174.     Width = 75
  175.     Height = 25
  176.     Caption = '&Apply'
  177.     Enabled = False
  178.     TabOrder = 4
  179.     OnClick = ApplyClick
  180.   end
  181.   object Help: TButton
  182.     Left = 295
  183.     Top = 162
  184.     Width = 75
  185.     Height = 25
  186.     Caption = '&Help'
  187.     TabOrder = 5
  188.     OnClick = HelpClick
  189.   end
  190. end
  191.