Subversion Repositories checksum-tools

Rev

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