-
Notifications
You must be signed in to change notification settings - Fork 5
/
Unit2.lfm
49 lines (49 loc) · 954 Bytes
/
Unit2.lfm
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
object Form2: TForm2
Left = 238
Height = 266
Top = 122
Width = 327
ActiveControl = Button1
Caption = 'Extract Options'
ClientHeight = 266
ClientWidth = 327
Font.Height = -11
Font.Name = 'MS Sans Serif'
OnCreate = FormCreate
Position = poScreenCenter
LCLVersion = '2.3.0.0'
object Memo1: TMemo
Left = 16
Height = 209
Top = 16
Width = 145
Lines.Strings = (
'Memo1'
)
TabOrder = 0
end
object Button1: TButton
Left = 184
Height = 57
Top = 40
Width = 113
Caption = 'Create &File'
OnClick = Button1Click
TabOrder = 1
end
object Button2: TButton
Left = 184
Height = 57
Top = 136
Width = 113
Caption = '&Close'
OnClick = Button2Click
TabOrder = 2
end
object SaveDialog1: TSaveDialog
DefaultExt = '.TXT'
Filter = 'Limboole|*.txt|All|*.*'
Left = 192
Top = 48
end
end