home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 April / CMCD0404.ISO / Software / Shareware / Comunicatii / thebat / the_bat2.04.07.exe / thebat.exe / 0 / RCDATA / TFOLDERSELECTOR / TFOLDERSELECTOR.txt
Encoding:
Text File  |  2004-02-23  |  2.1 KB  |  105 lines

  1. object FolderSelector: TFolderSelector
  2.   Left = 199
  3.   Top = 126
  4.   BorderIcons = [biSystemMenu]
  5.   BorderStyle = bsDialog
  6.   Caption = 'Select a folder'
  7.   ClientHeight = 341
  8.   ClientWidth = 409
  9.   Color = clBtnFace
  10.   Font.Charset = DEFAULT_CHARSET
  11.   Font.Color = clWindowText
  12.   Font.Height = -11
  13.   Font.Name = 'MS Sans Serif'
  14.   Font.Style = []
  15.   OldCreateOrder = True
  16.   Position = poScreenCenter
  17.   OnClose = FormClose
  18.   OnCreate = FormCreate
  19.   DesignSize = (
  20.     409
  21.     341)
  22.   PixelsPerInch = 96
  23.   TextHeight = 13
  24.   object bOK: TButton
  25.     Left = 296
  26.     Top = 8
  27.     Width = 107
  28.     Height = 25
  29.     Anchors = [akTop, akRight]
  30.     Caption = '&OK'
  31.     Default = True
  32.     ModalResult = 1
  33.     TabOrder = 1
  34.   end
  35.   object bCancel: TButton
  36.     Left = 296
  37.     Top = 48
  38.     Width = 107
  39.     Height = 25
  40.     Anchors = [akTop, akRight]
  41.     Cancel = True
  42.     Caption = 'Cancel'
  43.     ModalResult = 2
  44.     TabOrder = 2
  45.   end
  46.   object bNew: TButton
  47.     Left = 296
  48.     Top = 303
  49.     Width = 109
  50.     Height = 25
  51.     Anchors = [akRight, akBottom]
  52.     Caption = 'New...'
  53.     Enabled = False
  54.     TabOrder = 3
  55.     OnClick = bNewClick
  56.   end
  57.   object mlFolders: TMLVGrid
  58.     Left = 8
  59.     Top = 8
  60.     Width = 281
  61.     Height = 320
  62.     Anchors = [akLeft, akTop, akRight, akBottom]
  63.     ColCount = 1
  64.     DefaultRowHeight = 16
  65.     DefaultDrawing = False
  66.     FixedCols = 0
  67.     RowCount = 1
  68.     FixedRows = 0
  69.     Options = [goThumbTracking]
  70.     TabOrder = 0
  71.     OnDblClick = mlFoldersDblClick
  72.     OnKeyDown = mlFoldersKeyDown
  73.     OnMouseDown = mlFoldersMouseDown
  74.     AltDrag = True
  75.     AutoColResize = True
  76.     AutoSearch = True
  77.     MultiSelect = False
  78.     OnFocusItem = mlFoldersFocusItem
  79.     ImmediateSelect = False
  80.     OnDrawItemImage = mlFoldersDrawItemImage
  81.   end
  82.   object bSelectAll: TButton
  83.     Left = 296
  84.     Top = 96
  85.     Width = 107
  86.     Height = 25
  87.     Anchors = [akTop, akRight]
  88.     Caption = 'Select &All'
  89.     TabOrder = 4
  90.     Visible = False
  91.     OnClick = bSelectAllClick
  92.   end
  93.   object bUnselectAll: TButton
  94.     Left = 296
  95.     Top = 136
  96.     Width = 107
  97.     Height = 25
  98.     Anchors = [akTop, akRight]
  99.     Caption = '&Unselect all'
  100.     TabOrder = 5
  101.     Visible = False
  102.     OnClick = bSelectAllClick
  103.   end
  104. end
  105.