-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathUnit10.lfm
94 lines (94 loc) · 1.79 KB
/
Unit10.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
object Form10: TForm10
Left = 323
Height = 167
Top = 107
Width = 293
ActiveControl = ComboBox1
BorderIcons = [biSystemMenu, biMinimize]
BorderStyle = bsDialog
Caption = 'Select Printer'
ClientHeight = 167
ClientWidth = 293
Font.Height = -11
Font.Name = 'MS Sans Serif'
Position = poScreenCenter
LCLVersion = '4.99.0.0'
object Label1: TLabel
Left = 16
Height = 14
Top = 16
Width = 75
Caption = 'Actual printer'
ParentColor = False
end
object Label2: TLabel
Left = 16
Height = 14
Top = 48
Width = 101
Caption = 'Number of copies '
ParentColor = False
end
object Label3: TLabel
Left = 16
Height = 14
Top = 96
Width = 60
Caption = 'Line width:'
ParentColor = False
end
object Label4: TLabel
Left = 120
Height = 14
Top = 72
Width = 164
Caption = 'thin thick'
ParentColor = False
end
object ComboBox1: TComboBox
Left = 128
Height = 28
Top = 8
Width = 145
ItemHeight = 0
Style = csDropDownList
TabOrder = 0
end
object Button1: TButton
Left = 8
Height = 25
Top = 128
Width = 121
Caption = '&OK'
ModalResult = 1
TabOrder = 2
end
object Button2: TButton
Left = 160
Height = 25
Top = 128
Width = 121
Caption = '&Cancel'
ModalResult = 2
TabOrder = 3
end
object Edit1: TEdit
Left = 128
Height = 24
Top = 40
Width = 145
TabOrder = 1
Text = 'Edit1'
OnKeyPress = Edit1KeyPress
end
object ScrollBar1: TScrollBar
Left = 128
Height = 14
Top = 96
Width = 145
Min = 1
PageSize = 0
Position = 1
TabOrder = 4
end
end