-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathComUnit.dfm
92 lines (92 loc) · 1.93 KB
/
ComUnit.dfm
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
object ComForm: TComForm
Left = 18
Top = 2331
Anchors = []
BorderIcons = [biSystemMenu]
BorderStyle = bsSingle
Caption = 'COM Port'
ClientHeight = 90
ClientWidth = 170
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -14
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = False
Position = poMainFormCenter
OnActivate = FormActivate
OnKeyDown = FormKeyDown
PixelsPerInch = 120
TextHeight = 16
object Label1: TLabel
Left = 59
Top = 10
Width = 90
Height = 31
Alignment = taCenter
AutoSize = False
Color = clScrollBar
Font.Charset = DEFAULT_CHARSET
Font.Color = clDefault
Font.Height = -17
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentColor = False
ParentFont = False
end
object ComLabel: TLabel
Left = 59
Top = 15
Width = 90
Height = 21
Alignment = taCenter
AutoSize = False
Caption = 'COM'
Color = clScrollBar
Font.Charset = DEFAULT_CHARSET
Font.Color = clDefault
Font.Height = -17
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentColor = False
ParentFont = False
end
object Bevel1: TBevel
Left = 59
Top = 10
Width = 90
Height = 31
end
object OKButton: TButton
Left = 59
Top = 49
Width = 90
Height = 31
Cancel = True
Caption = 'OK'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -17
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ModalResult = 1
ParentFont = False
TabOrder = 0
TabStop = False
end
object PortUpDown: TUpDown
Left = 10
Top = 10
Width = 40
Height = 70
AlignButton = udLeft
ArrowKeys = False
Min = 1
Max = 99
Position = 3
TabOrder = 1
Wrap = True
OnClick = PortUpDownClick
end
end