home *** CD-ROM | disk | FTP | other *** search
/ Freelog 7 / Freelog007.iso / BAS / Fichiers / Replace / Replace.exe / 0 / RCDATA / TRZSELDIRFORM / TRZSELDIRFORM.txt
Text File  |  1999-06-09  |  3KB  |  137 lines

  1. object RzSelDirForm: TRzSelDirForm
  2.   Left = 247
  3.   Top = 117
  4.   BorderStyle = bsDialog
  5.   Caption = 'Select a Directory'
  6.   ClientHeight = 275
  7.   ClientWidth = 252
  8.   Font.Color = clWindowText
  9.   Font.Height = -11
  10.   Font.Name = 'MS Sans Serif'
  11.   Font.Style = []
  12.   Position = poScreenCenter
  13.   OnCreate = FormCreate
  14.   PixelsPerInch = 96
  15.   TextHeight = 13
  16.   object Label1: TLabel
  17.     Left = 8
  18.     Top = 8
  19.     Width = 73
  20.     Height = 13
  21.     Caption = 'Directory Name'
  22.   end
  23.   object Label2: TLabel
  24.     Left = 8
  25.     Top = 52
  26.     Width = 50
  27.     Height = 13
  28.     Caption = 'Directories'
  29.   end
  30.   object Label3: TLabel
  31.     Left = 8
  32.     Top = 196
  33.     Width = 30
  34.     Height = 13
  35.     Caption = 'Drives'
  36.   end
  37.   object LblDir: TLabel
  38.     Left = 8
  39.     Top = 24
  40.     Width = 237
  41.     Height = 13
  42.     AutoSize = False
  43.     Caption = 'D:\Raize\Cmponent\RzSelDir'
  44.     ParentShowHint = False
  45.     ShowHint = True
  46.   end
  47.   object EdtDir: TEdit
  48.     Left = 8
  49.     Top = 24
  50.     Width = 237
  51.     Height = 21
  52.     ParentShowHint = False
  53.     ShowHint = True
  54.     TabOrder = 0
  55.   end
  56.   object PnlButtons: TPanel
  57.     Left = 0
  58.     Top = 241
  59.     Width = 252
  60.     Height = 34
  61.     Align = alBottom
  62.     BevelOuter = bvNone
  63.     TabOrder = 3
  64.     object PnlButtonOffset: TPanel
  65.       Left = 6
  66.       Top = 0
  67.       Width = 163
  68.       Height = 34
  69.       Align = alRight
  70.       BevelOuter = bvNone
  71.       TabOrder = 0
  72.       object BtnOK: TBitBtn
  73.         Left = 0
  74.         Top = 2
  75.         Width = 75
  76.         Height = 25
  77.         Caption = 'OK'
  78.         Default = True
  79.         ModalResult = 1
  80.         TabOrder = 0
  81.         OnClick = BtnOKClick
  82.         NumGlyphs = 2
  83.       end
  84.       object BtnCancel: TBitBtn
  85.         Left = 82
  86.         Top = 2
  87.         Width = 75
  88.         Height = 25
  89.         Cancel = True
  90.         Caption = 'Cancel'
  91.         ModalResult = 2
  92.         TabOrder = 1
  93.         NumGlyphs = 2
  94.       end
  95.     end
  96.     object PnlHelpBtn: TPanel
  97.       Left = 169
  98.       Top = 0
  99.       Width = 83
  100.       Height = 34
  101.       Align = alRight
  102.       BevelOuter = bvNone
  103.       TabOrder = 1
  104.       Visible = False
  105.       object BtnHelp: TBitBtn
  106.         Left = 2
  107.         Top = 2
  108.         Width = 75
  109.         Height = 25
  110.         Caption = '&Help'
  111.         TabOrder = 0
  112.         OnClick = BtnHelpClick
  113.         NumGlyphs = 2
  114.       end
  115.     end
  116.   end
  117.   object LstDirs: TRzDirectoryListBox
  118.     Left = 8
  119.     Top = 68
  120.     Width = 237
  121.     Height = 121
  122.     DirLabel = LblDir
  123.     ItemHeight = 17
  124.     TabOrder = 1
  125.     OnChange = LstDirsChange
  126.     OnClick = LstDirsClick
  127.   end
  128.   object CbxDrives: TRzDriveComboBox
  129.     Left = 8
  130.     Top = 212
  131.     Width = 237
  132.     Height = 22
  133.     DirList = LstDirs
  134.     TabOrder = 2
  135.   end
  136. end
  137.