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

  1. object FileConflictDlg: TFileConflictDlg
  2.   Left = 202
  3.   Top = 108
  4.   Width = 413
  5.   Height = 334
  6.   BorderIcons = [biSystemMenu]
  7.   Caption = 'File Name Conflicts'
  8.   Font.Color = clWindowText
  9.   Font.Height = -11
  10.   Font.Name = 'MS Sans Serif'
  11.   Font.Style = []
  12.   Position = poScreenCenter
  13.   OnClose = FormClose
  14.   OnShow = FormShow
  15.   PixelsPerInch = 96
  16.   TextHeight = 13
  17.   object Panel1: TPanel
  18.     Left = 0
  19.     Top = 0
  20.     Width = 405
  21.     Height = 73
  22.     Align = alTop
  23.     BevelInner = bvLowered
  24.     BevelOuter = bvNone
  25.     BorderWidth = 8
  26.     TabOrder = 0
  27.     object lReason: TLabel
  28.       Left = 9
  29.       Top = 9
  30.       Width = 387
  31.       Height = 55
  32.       Align = alClient
  33.       AutoSize = False
  34.       Caption = 
  35.         'There were files with the same names detected on the destination' +
  36.         ' path. Please select the files you wish to leave or overwrite by' +
  37.         ' selecting them and pressing the Space Bar'
  38.       WordWrap = True
  39.     end
  40.   end
  41.   object Panel2: TPanel
  42.     Left = 0
  43.     Top = 266
  44.     Width = 405
  45.     Height = 41
  46.     Align = alBottom
  47.     BevelOuter = bvNone
  48.     TabOrder = 1
  49.     object bOK: TButton
  50.       Left = 232
  51.       Top = 8
  52.       Width = 75
  53.       Height = 25
  54.       Caption = '&OK'
  55.       Default = True
  56.       ModalResult = 1
  57.       TabOrder = 0
  58.     end
  59.     object bCancel: TButton
  60.       Left = 320
  61.       Top = 8
  62.       Width = 75
  63.       Height = 25
  64.       Cancel = True
  65.       Caption = 'Cancel'
  66.       ModalResult = 2
  67.       TabOrder = 1
  68.     end
  69.   end
  70.   object lFiles: TListView
  71.     Left = 0
  72.     Top = 73
  73.     Width = 405
  74.     Height = 193
  75.     Align = alClient
  76.     OnDblClick = lFilesDblClick
  77.     Columns = <
  78.       item
  79.         Caption = 'Original File'
  80.         Width = 150
  81.       end
  82.       item
  83.         Caption = 'Destination file'
  84.         Width = 150
  85.       end
  86.       item
  87.         Caption = 'Overwrite'
  88.         Width = 100
  89.       end>
  90.     ReadOnly = True
  91.     MultiSelect = True
  92.     SortType = stText
  93.     TabOrder = 2
  94.     ViewStyle = vsReport
  95.     OnKeyPress = lFilesKeyPress
  96.   end
  97. end
  98.