home *** CD-ROM | disk | FTP | other *** search
/ Delphi 4 Bible / Delphi_4_Bible_Tom_Swan_IDG_Books_1998.iso / source / DIREX / DIRDLG.dfm / DIRDLG.txt
Text File  |  1998-02-13  |  3KB  |  157 lines

  1. object DirDlgForm: TDirDlgForm
  2.   Left = 203
  3.   Top = 109
  4.   ActiveControl = FileNameEdit
  5.   BorderStyle = bsDialog
  6.   Caption = 'Directory Dialog'
  7.   ClientHeight = 220
  8.   ClientWidth = 482
  9.   Font.Charset = DEFAULT_CHARSET
  10.   Font.Color = clBlack
  11.   Font.Height = -11
  12.   Font.Name = 'Arial'
  13.   Font.Style = []
  14.   Position = poDefault
  15.   PixelsPerInch = 96
  16.   TextHeight = 14
  17.   object FileNameLabel: TLabel
  18.     Left = 8
  19.     Top = 8
  20.     Width = 53
  21.     Height = 14
  22.     Caption = 'File &Name'
  23.     FocusControl = FileNameEdit
  24.     Font.Charset = DEFAULT_CHARSET
  25.     Font.Color = clBlack
  26.     Font.Height = -11
  27.     Font.Name = 'Arial'
  28.     Font.Style = [fsBold]
  29.     ParentFont = False
  30.   end
  31.   object DirectoriesLabel: TLabel
  32.     Left = 200
  33.     Top = 8
  34.     Width = 61
  35.     Height = 14
  36.     Caption = '&Directories'
  37.     FocusControl = DirectoryListBox
  38.     Font.Charset = DEFAULT_CHARSET
  39.     Font.Color = clBlack
  40.     Font.Height = -11
  41.     Font.Name = 'Arial'
  42.     Font.Style = [fsBold]
  43.     ParentFont = False
  44.   end
  45.   object DirLabel: TLabel
  46.     Left = 200
  47.     Top = 27
  48.     Width = 169
  49.     Height = 14
  50.     AutoSize = False
  51.     Caption = 'D:\Delphi 4 Bible\SOURCE\DIREX'
  52.     Font.Charset = DEFAULT_CHARSET
  53.     Font.Color = clBlack
  54.     Font.Height = -11
  55.     Font.Name = 'Arial'
  56.     Font.Style = [fsBold]
  57.     ParentFont = False
  58.   end
  59.   object ListFilesLabel: TLabel
  60.     Left = 8
  61.     Top = 176
  62.     Width = 95
  63.     Height = 14
  64.     Caption = 'List files of &Type:'
  65.     FocusControl = FilterComboBox
  66.     Font.Charset = DEFAULT_CHARSET
  67.     Font.Color = clBlack
  68.     Font.Height = -11
  69.     Font.Name = 'Arial'
  70.     Font.Style = [fsBold]
  71.     ParentFont = False
  72.   end
  73.   object DrivesLabel: TLabel
  74.     Left = 200
  75.     Top = 176
  76.     Width = 35
  77.     Height = 14
  78.     Caption = 'Dri&ves'
  79.     FocusControl = DriveComboBox
  80.     Font.Charset = DEFAULT_CHARSET
  81.     Font.Color = clBlack
  82.     Font.Height = -11
  83.     Font.Name = 'Arial'
  84.     Font.Style = [fsBold]
  85.     ParentFont = False
  86.   end
  87.   object FileListBox: TFileListBox
  88.     Left = 8
  89.     Top = 56
  90.     Width = 169
  91.     Height = 102
  92.     FileEdit = FileNameEdit
  93.     IntegralHeight = True
  94.     ItemHeight = 14
  95.     TabOrder = 1
  96.     OnDblClick = FileListBoxDblClick
  97.   end
  98.   object DirectoryListBox: TDirectoryListBox
  99.     Left = 200
  100.     Top = 56
  101.     Width = 169
  102.     Height = 100
  103.     DirLabel = DirLabel
  104.     FileList = FileListBox
  105.     IntegralHeight = True
  106.     ItemHeight = 16
  107.     TabOrder = 2
  108.   end
  109.   object DriveComboBox: TDriveComboBox
  110.     Left = 200
  111.     Top = 192
  112.     Width = 169
  113.     Height = 20
  114.     TabOrder = 4
  115.     OnChange = DriveComboBoxChange
  116.   end
  117.   object FilterComboBox: TFilterComboBox
  118.     Left = 8
  119.     Top = 192
  120.     Width = 169
  121.     Height = 22
  122.     FileList = FileListBox
  123.     Filter = 
  124.       'All files (*.*)|*.*|Executable files (*.exe)|*.exe|Executable fi' +
  125.       'les (*.com)|*.com|Dos batch files (*.bat)|*.bat|Dos Pif files (*' +
  126.       '.pif)|*.pif|Windows help files (*.hlp)|*.hlp|Windows bitmap file' +
  127.       's (*.bmp)|*.bmp|Text files (*.txt)|*.txt'
  128.     TabOrder = 3
  129.   end
  130.   object FileNameEdit: TEdit
  131.     Left = 8
  132.     Top = 24
  133.     Width = 169
  134.     Height = 22
  135.     TabOrder = 0
  136.     Text = '*.*'
  137.   end
  138.   object OkBitBtn: TBitBtn
  139.     Left = 384
  140.     Top = 16
  141.     Width = 89
  142.     Height = 33
  143.     Caption = 'O&k'
  144.     TabOrder = 5
  145.     Kind = bkOK
  146.   end
  147.   object CancelBitBtn: TBitBtn
  148.     Left = 384
  149.     Top = 56
  150.     Width = 89
  151.     Height = 33
  152.     Caption = '&Cancel'
  153.     TabOrder = 6
  154.     Kind = bkCancel
  155.   end
  156. end
  157.