home *** CD-ROM | disk | FTP | other *** search
/ Windows 95 Top 50 Winners / Top50.iso / nnsur10 / Install.exe / RCDATA / TFORMDIRBOX / TFORMDIRBOX.txt
Text File  |  1997-03-08  |  1KB  |  79 lines

  1. object FormDirBox: TFormDirBox
  2.   Left = 250
  3.   Top = 218
  4.   BorderStyle = bsDialog
  5.   Caption = 'Directory selection'
  6.   ClientHeight = 220
  7.   ClientWidth = 391
  8.   Color = clSilver
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   Position = poScreenCenter
  14.   OnCreate = FormCreate
  15.   OnHide = FormHide
  16.   OnShow = FormShow
  17.   PixelsPerInch = 96
  18.   TextHeight = 13
  19.   object Label1: TLabel
  20.     Left = 8
  21.     Top = 192
  22.     Width = 28
  23.     Height = 13
  24.     Caption = 'Drive:'
  25.   end
  26.   object Label2: TLabel
  27.     Left = 8
  28.     Top = 16
  29.     Width = 162
  30.     Height = 13
  31.     Caption = 'Double-click a directory to select it'
  32.   end
  33.   object DirList: TDirectoryListBox
  34.     Left = 7
  35.     Top = 32
  36.     Width = 288
  37.     Height = 145
  38.     ItemHeight = 16
  39.     TabOrder = 0
  40.     OnChange = DirListChange
  41.   end
  42.   object DriveCombo: TDriveComboBox
  43.     Left = 50
  44.     Top = 191
  45.     Width = 191
  46.     Height = 19
  47.     DirList = DirList
  48.     TabOrder = 1
  49.   end
  50.   object ButtonCancel: TButton
  51.     Left = 305
  52.     Top = 151
  53.     Width = 75
  54.     Height = 25
  55.     Caption = '&Cancel'
  56.     TabOrder = 2
  57.     OnClick = ButtonCancelClick
  58.   end
  59.   object ButtonOK: TButton
  60.     Left = 304
  61.     Top = 183
  62.     Width = 75
  63.     Height = 25
  64.     Caption = '&OK'
  65.     ModalResult = 1
  66.     TabOrder = 3
  67.     OnClick = ButtonOKClick
  68.   end
  69.   object ButtonCreateDir: TButton
  70.     Left = 304
  71.     Top = 32
  72.     Width = 75
  73.     Height = 25
  74.     Caption = 'Create &Dir'
  75.     TabOrder = 4
  76.     OnClick = ButtonCreateDirClick
  77.   end
  78. end
  79.