Blob Blame Raw
object frmMain: TfrmMain
  Left = 140
  Height = 294
  Top = 201
  Width = 397
  Caption = 'Midnight Copier'
  ClientHeight = 294
  ClientWidth = 397
  Color = clBtnFace
  Constraints.MinHeight = 190
  Constraints.MinWidth = 250
  Font.Color = clWindowText
  Font.Height = -11
  Font.Name = 'MS Sans Serif'
  KeyPreview = True
  OnClose = FormClose
  OnCreate = FormCreate
  OnDestroy = FormDestroy
  OnKeyDown = FormKeyDown
  OnResize = FormResize
  Position = poScreenCenter
  LCLVersion = '1.8.4.0'
  object Label5: TLabel
    Left = 143
    Height = 13
    Top = 277
    Width = 241
    Anchors = [akRight, akBottom]
    Caption = '©2004 Copyleft by Midnight Entertainment'
    ParentColor = False
  end
  object iProgress: TImage
    Left = 8
    Height = 25
    Top = 80
    Width = 380
    Anchors = [akTop, akLeft, akRight]
    OnPaint = iProgressPaint
  end
  object Label1: TLabel
    Left = 8
    Height = 13
    Top = 16
    Width = 32
    Caption = 'From:'
    ParentColor = False
  end
  object Label2: TLabel
    Left = 8
    Height = 13
    Top = 48
    Width = 16
    Caption = 'To:'
    ParentColor = False
  end
  object eSrcFile: TEdit
    Left = 40
    Height = 30
    Top = 8
    Width = 237
    Anchors = [akTop, akLeft, akRight]
    TabOrder = 0
  end
  object eDestFile: TEdit
    Left = 40
    Height = 30
    Top = 40
    Width = 237
    Anchors = [akTop, akLeft, akRight]
    TabOrder = 1
  end
  object bCopy: TButton
    Left = 315
    Height = 30
    Top = 8
    Width = 75
    Anchors = [akTop, akRight]
    Caption = 'Copy'
    Default = True
    OnClick = bCopyClick
    TabOrder = 2
  end
  object bSrc: TButton
    Left = 283
    Height = 30
    Top = 8
    Width = 29
    Anchors = [akTop, akRight]
    Caption = '...'
    OnClick = bSrcClick
    TabOrder = 3
  end
  object bDest: TButton
    Left = 283
    Height = 30
    Top = 40
    Width = 29
    Anchors = [akTop, akRight]
    Caption = '...'
    OnClick = bDestClick
    TabOrder = 4
  end
  object bCancel: TButton
    Left = 315
    Height = 30
    Top = 40
    Width = 75
    Anchors = [akTop, akRight]
    Caption = 'Cancel'
    OnClick = bCancelClick
    TabOrder = 5
  end
  object mReport: TMemo
    Left = 8
    Height = 164
    Top = 112
    Width = 380
    Anchors = [akTop, akLeft, akRight, akBottom]
    Color = clBtnFace
    Font.Color = clWindowText
    Font.Height = -11
    Font.Name = 'Courier New'
    ParentFont = False
    ReadOnly = True
    ScrollBars = ssBoth
    TabOrder = 6
  end
  object odSrc: TOpenDialog
    Options = [ofNoChangeDir, ofExtensionDifferent, ofEnableSizing, ofForceShowHidden]
    left = 232
    top = 72
  end
  object sdDest: TSaveDialog
    Options = [ofNoChangeDir, ofExtensionDifferent, ofNoReadOnlyReturn, ofEnableSizing, ofForceShowHidden]
    left = 264
    top = 72
  end
end