Subversion Repositories checksum-tools

Rev

Rev 7 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
6 daniel-mar 1
object Form3: TForm3
2
  Left = 0
3
  Top = 0
4
  BorderIcons = [biSystemMenu, biMinimize]
5
  BorderStyle = bsSingle
6
  ClientHeight = 619
7
  ClientWidth = 630
8
  Color = clBtnFace
9
  Font.Charset = DEFAULT_CHARSET
10
  Font.Color = clWindowText
11
  Font.Height = -11
12
  Font.Name = 'Tahoma'
13
  Font.Style = []
14
  OldCreateOrder = False
15
  OnShow = FormShow
16
  PixelsPerInch = 96
17
  TextHeight = 13
18
  object Label1: TLabel
19
    Left = 8
20
    Top = 8
21
    Width = 42
22
    Height = 13
23
    Caption = 'Files OK:'
24
  end
25
  object Label2: TLabel
26
    Left = 8
27
    Top = 235
28
    Width = 99
29
    Height = 13
30
    Caption = 'Checksum mismatch:'
31
  end
32
  object Label3: TLabel
33
    Left = 8
34
    Top = 346
35
    Width = 62
36
    Height = 13
37
    Caption = 'Files missing:'
38
  end
39
  object Label4: TLabel
40
    Left = 8
41
    Top = 457
42
    Width = 113
43
    Height = 13
44
    Caption = 'Files without checksum:'
45
  end
46
  object Memo1: TMemo
47
    Left = 8
48
    Top = 27
49
    Width = 601
50
    Height = 190
51
    Font.Charset = ANSI_CHARSET
52
    Font.Color = clWindowText
53
    Font.Height = -11
54
    Font.Name = 'Courier New'
55
    Font.Style = []
56
    ParentFont = False
57
    ScrollBars = ssBoth
58
    TabOrder = 0
59
  end
60
  object Memo2: TMemo
61
    Left = 8
62
    Top = 254
63
    Width = 601
64
    Height = 86
65
    Font.Charset = ANSI_CHARSET
66
    Font.Color = clWindowText
67
    Font.Height = -11
68
    Font.Name = 'Courier New'
69
    Font.Style = []
70
    ParentFont = False
71
    ScrollBars = ssBoth
72
    TabOrder = 1
73
  end
74
  object Memo3: TMemo
75
    Left = 8
76
    Top = 365
77
    Width = 601
78
    Height = 86
79
    Font.Charset = ANSI_CHARSET
80
    Font.Color = clWindowText
81
    Font.Height = -11
82
    Font.Name = 'Courier New'
83
    Font.Style = []
84
    ParentFont = False
85
    ScrollBars = ssBoth
86
    TabOrder = 2
87
  end
88
  object Memo4: TMemo
89
    Left = 8
90
    Top = 476
91
    Width = 601
92
    Height = 86
93
    Font.Charset = ANSI_CHARSET
94
    Font.Color = clWindowText
95
    Font.Height = -11
96
    Font.Name = 'Courier New'
97
    Font.Style = []
98
    ParentFont = False
99
    ScrollBars = ssBoth
100
    TabOrder = 3
101
  end
102
  object Button1: TButton
103
    Left = 8
104
    Top = 568
105
    Width = 167
106
    Height = 38
107
    Caption = 'Merge, save and re-check'
108
    TabOrder = 4
109
    OnClick = Button1Click
110
  end
111
  object OpenDialog1: TOpenDialog
112
    Filter = 'SFV Files (*.sfv)|*.sfv|MD5 files (*.md5)|*.md5'
113
    Options = [ofHideReadOnly, ofFileMustExist, ofEnableSizing]
114
    Left = 560
115
    Top = 552
116
  end
117
end