1 |
object Form1: TForm1 |
2 |
Left = 0 |
3 |
Top = 0 |
4 |
Caption = 'File readability checker' |
5 |
ClientHeight = 472 |
6 |
ClientWidth = 756 |
7 |
Color = clBtnFace |
8 |
Font.Charset = DEFAULT_CHARSET |
9 |
Font.Color = clWindowText |
10 |
Font.Height = -11 |
11 |
Font.Name = 'Tahoma' |
12 |
Font.Style = [] |
13 |
OldCreateOrder = False |
14 |
Position = poScreenCenter |
15 |
OnClose = FormClose |
16 |
OnCreate = FormCreate |
17 |
DesignSize = ( |
18 |
756 |
19 |
472) |
20 |
PixelsPerInch = 96 |
21 |
TextHeight = 13 |
22 |
object Label1: TLabel |
23 |
Left = 16 |
24 |
Top = 45 |
25 |
Width = 66 |
26 |
Height = 13 |
27 |
Caption = 'Found errors:' |
28 |
end |
29 |
object Label2: TLabel |
30 |
Left = 201 |
31 |
Top = 446 |
32 |
Width = 537 |
33 |
Height = 13 |
34 |
Anchors = [akLeft, akRight, akBottom] |
35 |
AutoSize = False |
36 |
Caption = 'Ready.' |
37 |
ExplicitTop = 445 |
38 |
ExplicitWidth = 497 |
39 |
end |
40 |
object Button1: TButton |
41 |
Left = 16 |
42 |
Top = 423 |
43 |
Width = 169 |
44 |
Height = 33 |
45 |
Anchors = [akLeft, akBottom] |
46 |
Caption = 'Start' |
47 |
Default = True |
48 |
TabOrder = 0 |
49 |
OnClick = Button1Click |
50 |
end |
51 |
object Edit1: TEdit |
52 |
Left = 16 |
53 |
Top = 16 |
54 |
Width = 722 |
55 |
Height = 21 |
56 |
Anchors = [akLeft, akTop, akRight] |
57 |
TabOrder = 1 |
58 |
Text = 'C:\' |
59 |
end |
60 |
object Memo1: TMemo |
61 |
Left = 8 |
62 |
Top = 64 |
63 |
Width = 722 |
64 |
Height = 353 |
65 |
Anchors = [akLeft, akTop, akRight, akBottom] |
66 |
ReadOnly = True |
67 |
ScrollBars = ssBoth |
68 |
TabOrder = 2 |
69 |
end |
70 |
object ProgressBar1: TProgressBar |
71 |
Left = 201 |
72 |
Top = 423 |
73 |
Width = 537 |
74 |
Height = 17 |
75 |
Anchors = [akLeft, akRight, akBottom] |
76 |
TabOrder = 3 |
77 |
end |
78 |
end |