-
Notifications
You must be signed in to change notification settings - Fork 0
/
TextMsg.dfm
executable file
·85 lines (85 loc) · 1.74 KB
/
TextMsg.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
object TextMsgForm: TTextMsgForm
Left = 0
Top = 0
BorderStyle = bsDialog
Caption = 'Helium Management :: Msg'
ClientHeight = 142
ClientWidth = 204
Color = clBtnHighlight
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
Position = poMainFormCenter
PixelsPerInch = 96
TextHeight = 13
object textLab: TLabel
Left = 16
Top = 58
Width = 54
Height = 11
Caption = 'message text'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -9
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
end
object typeLab: TLabel
Left = 16
Top = 16
Width = 58
Height = 11
Caption = 'message type'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -9
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
end
object sendBtn: TButton
Left = 24
Top = 109
Width = 75
Height = 25
Caption = 'Send'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 2
OnClick = sendBtnClick
end
object typeCoBox: TComboBox
Left = 8
Top = 28
Width = 185
Height = 21
Style = csDropDownList
ItemHeight = 13
TabOrder = 0
end
object CancelBtn: TButton
Left = 105
Top = 109
Width = 75
Height = 25
Caption = 'Cancel'
ModalResult = 2
TabOrder = 3
end
object textEd: TEdit
Left = 8
Top = 70
Width = 185
Height = 21
MaxLength = 18
TabOrder = 1
end
end