-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathUnit1.lfm
executable file
·97 lines (97 loc) · 1.92 KB
/
Unit1.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
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
object Form1: TForm1
Left = 347
Height = 209
Top = 107
Width = 335
ActiveControl = Button1
BorderIcons = [biSystemMenu, biMinimize]
BorderStyle = bsSingle
Caption = 'Form1'
ClientHeight = 209
ClientWidth = 335
Font.Height = -11
Font.Name = 'MS Sans Serif'
OnCreate = FormCreate
OnDestroy = FormDestroy
Position = poScreenCenter
LCLVersion = '2.3.0.0'
object GroupBox1: TGroupBox
Left = 8
Height = 57
Top = 8
Width = 153
Caption = ' Compress '
ClientHeight = 42
ClientWidth = 151
TabOrder = 0
object Button1: TButton
Left = 8
Height = 25
Top = 4
Width = 137
Caption = '&Open file'
OnClick = Button1Click
TabOrder = 0
end
end
object GroupBox2: TGroupBox
Left = 168
Height = 57
Top = 8
Width = 153
Caption = ' Decompress '
ClientHeight = 42
ClientWidth = 151
TabOrder = 1
object Button3: TButton
Left = 6
Height = 25
Top = 4
Width = 137
Caption = 'O&pen file'
OnClick = Button3Click
TabOrder = 0
end
end
object Button5: TButton
Left = 16
Height = 25
Top = 168
Width = 297
Caption = '&Close'
OnClick = Button5Click
TabOrder = 2
end
object Button6: TButton
Left = 16
Height = 25
Top = 128
Width = 297
Caption = '&Help / Support'
OnClick = Button6Click
TabOrder = 3
end
object Label1: TLabel
Left = 8
Height = 14
Top = 72
Width = 37
Caption = 'Label1'
end
object OpenDialog1: TOpenDialog
Left = 32
Top = 40
end
object SaveDialog1: TSaveDialog
DefaultExt = '.LZW'
Filter = 'LZW-File|*.LZW|All|*.*'
Left = 96
Top = 40
end
object OpenDialog2: TOpenDialog
DefaultExt = '.LZW'
Filter = 'LZW-File|*.lzw|All|*.*'
Left = 184
Top = 32
end
end