home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 June / Chip_2002-06_cd1.bin / zkuste / delphi / kolekce / d6 / rxlibsetup.exe / {app} / units / RXDIRFRM.dfm / RXDIRFRM.txt
Encoding:
Text File  |  1999-10-12  |  1.7 KB  |  88 lines

  1. object DirectoryListDialog: TDirectoryListDialog
  2.   Left = 206
  3.   Top = 99
  4.   ActiveControl = DirectoryList
  5.   BorderStyle = bsDialog
  6.   Caption = 'Directory list'
  7.   ClientHeight = 191
  8.   ClientWidth = 350
  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.   OnCreate = FormCreate
  18.   OnShow = FormShow
  19.   PixelsPerInch = 96
  20.   TextHeight = 13
  21.   object DirectoryList: TTextListBox
  22.     Left = 8
  23.     Top = 12
  24.     Width = 245
  25.     Height = 165
  26.     DragMode = dmAutomatic
  27.     ItemHeight = 13
  28.     TabOrder = 0
  29.     OnClick = DirectoryListClick
  30.     OnDragDrop = DirectoryListDragDrop
  31.     OnDragOver = DirectoryListDragOver
  32.   end
  33.   object AddBtn: TButton
  34.     Left = 264
  35.     Top = 12
  36.     Width = 75
  37.     Height = 25
  38.     Caption = 'Add...'
  39.     TabOrder = 1
  40.     OnClick = AddBtnClick
  41.   end
  42.   object RemoveBtn: TButton
  43.     Left = 264
  44.     Top = 76
  45.     Width = 75
  46.     Height = 25
  47.     Caption = 'Remove'
  48.     TabOrder = 3
  49.     OnClick = RemoveBtnClick
  50.   end
  51.   object ModifyBtn: TButton
  52.     Left = 264
  53.     Top = 44
  54.     Width = 75
  55.     Height = 25
  56.     Caption = 'Modify'
  57.     TabOrder = 2
  58.     OnClick = ModifyBtnClick
  59.   end
  60.   object OKBtn: TButton
  61.     Left = 264
  62.     Top = 120
  63.     Width = 75
  64.     Height = 25
  65.     Caption = 'OK'
  66.     Default = True
  67.     ModalResult = 1
  68.     TabOrder = 4
  69.   end
  70.   object CancelBtn: TButton
  71.     Left = 264
  72.     Top = 152
  73.     Width = 75
  74.     Height = 25
  75.     Cancel = True
  76.     Caption = 'Cancel'
  77.     ModalResult = 2
  78.     TabOrder = 5
  79.   end
  80.   object Storage: TFormStorage
  81.     IniFileName = 'DELPHI.INI'
  82.     IniSection = 'RX.DirListEditor'
  83.     StoredValues = <>
  84.     Left = 4
  85.     Top = 160
  86.   end
  87. end
  88.