home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 March / Chip_2002-03_cd1.bin / tema / thebat / download / update / thebat.exe / 0 / RCDATA / TGROUPSELECTOR / TGROUPSELECTOR.txt
Text File  |  2001-09-09  |  2KB  |  90 lines

  1. object GroupSelector: TGroupSelector
  2.   Left = 200
  3.   Top = 111
  4.   BorderStyle = bsDialog
  5.   Caption = 'Group Selector'
  6.   ClientHeight = 211
  7.   ClientWidth = 440
  8.   Font.Color = clWindowText
  9.   Font.Height = -11
  10.   Font.Name = 'MS Sans Serif'
  11.   Font.Style = []
  12.   OnClose = FormClose
  13.   OnCreate = FormCreate
  14.   PixelsPerInch = 96
  15.   TextHeight = 13
  16.   object bOK: TButton
  17.     Left = 344
  18.     Top = 16
  19.     Width = 89
  20.     Height = 25
  21.     Caption = '&OK'
  22.     Default = True
  23.     ModalResult = 1
  24.     TabOrder = 0
  25.     OnClick = bOKClick
  26.   end
  27.   object bCancel: TButton
  28.     Left = 344
  29.     Top = 48
  30.     Width = 89
  31.     Height = 25
  32.     Cancel = True
  33.     Caption = 'Cancel'
  34.     ModalResult = 2
  35.     TabOrder = 1
  36.   end
  37.   object bSelect: TButton
  38.     Left = 344
  39.     Top = 144
  40.     Width = 89
  41.     Height = 25
  42.     Caption = 'Select all'
  43.     TabOrder = 2
  44.     OnClick = bSelectClick
  45.   end
  46.   object bUnselect: TButton
  47.     Tag = 1
  48.     Left = 344
  49.     Top = 176
  50.     Width = 89
  51.     Height = 25
  52.     Caption = 'Deselect all'
  53.     TabOrder = 3
  54.     OnClick = bSelectClick
  55.   end
  56.   object hGroups: THeaderControl
  57.     Left = 8
  58.     Top = 16
  59.     Width = 321
  60.     Height = 17
  61.     Align = alNone
  62.     Sections = <
  63.       item
  64.         AllowClick = False
  65.         MinWidth = 100
  66.         Text = 'Group'
  67.         Width = 170
  68.       end
  69.       item
  70.         AllowClick = False
  71.         MinWidth = 10000
  72.         Text = 'Handle'
  73.         Width = 10000
  74.       end>
  75.     OnSectionResize = hGroupsSectionResize
  76.   end
  77.   object lGroups: TListBox
  78.     Left = 8
  79.     Top = 32
  80.     Width = 321
  81.     Height = 169
  82.     ItemHeight = 16
  83.     Style = lbOwnerDrawFixed
  84.     TabOrder = 5
  85.     OnClick = lGroupsClick
  86.     OnDrawItem = lGroupsDrawItem
  87.     OnKeyDown = lGroupsKeyDown
  88.   end
  89. end
  90.