blob: 1f6cb2313f7a04fe4f7cac72803e7ba090137edd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
object Form2: TForm2
Left = 0
Top = 0
BorderIcons = []
Caption = 'Select the language'
ClientHeight = 151
ClientWidth = 205
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
OnCreate = FormCreate
PixelsPerInch = 96
TextHeight = 13
object Label1: TLabel
Left = 8
Top = 8
Width = 89
Height = 13
Caption = 'Editable language:'
end
object Label2: TLabel
Left = 8
Top = 62
Width = 113
Height = 13
Caption = 'Languages to compare:'
end
object ComboBox1: TComboBox
Left = 8
Top = 27
Width = 185
Height = 22
Style = csOwnerDrawFixed
TabOrder = 0
OnChange = ComboBox1Change
end
object CheckBox1: TCheckBox
Left = 137
Top = 61
Width = 56
Height = 17
Caption = 'english'
Checked = True
Enabled = False
State = cbChecked
TabOrder = 1
end
object Button1: TButton
Left = 103
Top = 118
Width = 89
Height = 25
Caption = 'Start'
Enabled = False
TabOrder = 2
OnClick = Button1Click
end
object Button2: TButton
Left = 8
Top = 118
Width = 89
Height = 25
Caption = 'Cancel'
TabOrder = 3
OnClick = Button2Click
end
object ComboBox2: TComboBox
Left = 8
Top = 84
Width = 185
Height = 22
Style = csOwnerDrawFixed
TabOrder = 4
end
end
|