Subversion Repositories delphiutils

Rev

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

Rev Author Line No. Line
84 daniel-mar 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
  DesignSize = (
17
    756
18
    472)
19
  PixelsPerInch = 96
20
  TextHeight = 13
21
  object Label1: TLabel
22
    Left = 16
23
    Top = 45
24
    Width = 66
25
    Height = 13
26
    Caption = 'Found errors:'
27
  end
28
  object Label2: TLabel
29
    Left = 201
30
    Top = 446
31
    Width = 537
32
    Height = 13
33
    Anchors = [akLeft, akRight, akBottom]
34
    AutoSize = False
35
    Caption = 'Ready.'
36
    ExplicitTop = 445
37
    ExplicitWidth = 497
38
  end
39
  object Button1: TButton
40
    Left = 16
41
    Top = 423
42
    Width = 169
43
    Height = 33
44
    Anchors = [akLeft, akBottom]
45
    Caption = 'Start'
46
    Default = True
47
    TabOrder = 0
48
    OnClick = Button1Click
49
    ExplicitTop = 422
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
    ExplicitWidth = 682
60
  end
61
  object Memo1: TMemo
62
    Left = 16
63
    Top = 64
64
    Width = 722
65
    Height = 353
66
    Anchors = [akLeft, akTop, akRight, akBottom]
67
    ReadOnly = True
68
    ScrollBars = ssBoth
69
    TabOrder = 2
70
    ExplicitWidth = 682
71
    ExplicitHeight = 352
72
  end
73
  object ProgressBar1: TProgressBar
74
    Left = 201
75
    Top = 423
76
    Width = 537
77
    Height = 17
78
    Anchors = [akLeft, akRight, akBottom]
79
    TabOrder = 3
80
    ExplicitTop = 422
81
    ExplicitWidth = 497
82
  end
83
end