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

  1. object FolderSelector: TFolderSelector
  2.   Left = 199
  3.   Top = 126
  4.   BorderIcons = [biSystemMenu]
  5.   BorderStyle = bsDialog
  6.   Caption = 'Select a folder'
  7.   ClientHeight = 240
  8.   ClientWidth = 311
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   Position = poScreenCenter
  14.   OnClose = FormClose
  15.   OnCreate = FormCreate
  16.   PixelsPerInch = 96
  17.   TextHeight = 13
  18.   object lFolders: TTreeView
  19.     Left = 8
  20.     Top = 8
  21.     Width = 217
  22.     Height = 225
  23.     Indent = 19
  24.     OnChange = lFoldersChange
  25.     ParentColor = False
  26.     TabOrder = 0
  27.     OnDblClick = lFoldersDblClick
  28.   end
  29.   object bOK: TButton
  30.     Left = 232
  31.     Top = 8
  32.     Width = 75
  33.     Height = 25
  34.     Caption = '&OK'
  35.     Default = True
  36.     ModalResult = 1
  37.     TabOrder = 1
  38.   end
  39.   object bCancel: TButton
  40.     Left = 232
  41.     Top = 48
  42.     Width = 75
  43.     Height = 25
  44.     Cancel = True
  45.     Caption = 'Cancel'
  46.     ModalResult = 2
  47.     TabOrder = 2
  48.   end
  49.   object bNew: TButton
  50.     Left = 232
  51.     Top = 208
  52.     Width = 75
  53.     Height = 25
  54.     Caption = 'New...'
  55.     Enabled = False
  56.     TabOrder = 3
  57.     OnClick = bNewClick
  58.   end
  59. end
  60.