home *** CD-ROM | disk | FTP | other *** search
/ Guide To Cracking 2002 / Guide_to_Cracking_2002.iso / Programming / yPP-B-SRC.ZIP / Unit6.dfm < prev    next >
Encoding:
Text File  |  2000-08-31  |  3.3 KB  |  147 lines

  1. object compareform: Tcompareform
  2.   Left = 110
  3.   Top = 465
  4.   BorderStyle = bsToolWindow
  5.   Caption = 'File Compare'
  6.   ClientHeight = 117
  7.   ClientWidth = 467
  8.   Color = clBtnFace
  9.   Font.Charset = DEFAULT_CHARSET
  10.   Font.Color = clWindowText
  11.   Font.Height = -11
  12.   Font.Name = 'MS Sans Serif'
  13.   Font.Style = []
  14.   OldCreateOrder = False
  15.   Position = poMainFormCenter
  16.   OnClose = FormClose
  17.   OnShow = FormShow
  18.   PixelsPerInch = 96
  19.   TextHeight = 13
  20.   object Gauge1: TGauge
  21.     Left = 8
  22.     Top = 96
  23.     Width = 353
  24.     Height = 17
  25.     BackColor = clMenu
  26.     Color = clBtnFace
  27.     ForeColor = clActiveCaption
  28.     ParentColor = False
  29.     Progress = 0
  30.   end
  31.   object SpeedButton1: TSpeedButton
  32.     Left = 384
  33.     Top = 16
  34.     Width = 73
  35.     Height = 22
  36.     Caption = 'START'
  37.     Flat = True
  38.     Font.Charset = DEFAULT_CHARSET
  39.     Font.Color = clWindowText
  40.     Font.Height = -11
  41.     Font.Name = 'MS Sans Serif'
  42.     Font.Style = [fsBold]
  43.     ParentFont = False
  44.     OnClick = SpeedButton1Click
  45.   end
  46.   object SpeedButton2: TSpeedButton
  47.     Left = 384
  48.     Top = 40
  49.     Width = 73
  50.     Height = 22
  51.     Caption = 'Cancel'
  52.     Flat = True
  53.     Font.Charset = DEFAULT_CHARSET
  54.     Font.Color = clWindowText
  55.     Font.Height = -11
  56.     Font.Name = 'MS Sans Serif'
  57.     Font.Style = [fsBold]
  58.     ParentFont = False
  59.     OnClick = SpeedButton2Click
  60.   end
  61.   object Panel1: TPanel
  62.     Left = 8
  63.     Top = 8
  64.     Width = 353
  65.     Height = 81
  66.     Alignment = taLeftJustify
  67.     BevelInner = bvRaised
  68.     BevelOuter = bvLowered
  69.     TabOrder = 0
  70.     object SpeedButton3: TSpeedButton
  71.       Left = 314
  72.       Top = 16
  73.       Width = 23
  74.       Height = 22
  75.       Caption = '...'
  76.       Flat = True
  77.       Font.Charset = DEFAULT_CHARSET
  78.       Font.Color = clWindowText
  79.       Font.Height = -11
  80.       Font.Name = 'MS Sans Serif'
  81.       Font.Style = [fsBold]
  82.       ParentFont = False
  83.       OnClick = SpeedButton3Click
  84.     end
  85.     object SpeedButton4: TSpeedButton
  86.       Left = 314
  87.       Top = 48
  88.       Width = 23
  89.       Height = 22
  90.       Caption = '...'
  91.       Flat = True
  92.       Font.Charset = DEFAULT_CHARSET
  93.       Font.Color = clWindowText
  94.       Font.Height = -11
  95.       Font.Name = 'MS Sans Serif'
  96.       Font.Style = [fsBold]
  97.       ParentFont = False
  98.       OnClick = SpeedButton4Click
  99.     end
  100.     object Edit1: TEdit
  101.       Left = 80
  102.       Top = 16
  103.       Width = 233
  104.       Height = 21
  105.       TabStop = False
  106.       ReadOnly = True
  107.       TabOrder = 0
  108.     end
  109.     object Edit2: TEdit
  110.       Left = 80
  111.       Top = 48
  112.       Width = 233
  113.       Height = 21
  114.       TabStop = False
  115.       ReadOnly = True
  116.       TabOrder = 1
  117.     end
  118.     object Panel2: TPanel
  119.       Left = 8
  120.       Top = 8
  121.       Width = 65
  122.       Height = 33
  123.       Alignment = taLeftJustify
  124.       BevelOuter = bvNone
  125.       Caption = 'Original File:'
  126.       TabOrder = 2
  127.     end
  128.     object Panel3: TPanel
  129.       Left = 8
  130.       Top = 40
  131.       Width = 65
  132.       Height = 33
  133.       Alignment = taLeftJustify
  134.       BevelOuter = bvNone
  135.       Caption = 'Modified File:'
  136.       TabOrder = 3
  137.     end
  138.   end
  139.   object OpenDialog1: TOpenDialog
  140.     Filter = 'Executable Files|*.exe|all files|*.*'
  141.     InitialDir = '.'
  142.     Options = [ofHideReadOnly, ofPathMustExist, ofFileMustExist]
  143.     Left = 440
  144.     Top = 88
  145.   end
  146. end
  147.