-
Notifications
You must be signed in to change notification settings - Fork 0
/
uFrmConnect.dfm
162 lines (162 loc) · 3.2 KB
/
uFrmConnect.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
object FrmConnect: TFrmConnect
Left = 389
Top = 300
Caption = 'Connect'
ClientHeight = 483
ClientWidth = 612
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = False
Position = poMainFormCenter
Scaled = False
OnActivate = FormActivate
DesignSize = (
612
483)
PixelsPerInch = 96
TextHeight = 13
object Label1: TLabel
Left = 465
Top = 9
Width = 22
Height = 13
Anchors = [akTop, akRight]
Caption = 'User'
ExplicitLeft = 392
end
object Label2: TLabel
Left = 465
Top = 57
Width = 46
Height = 13
Anchors = [akTop, akRight]
Caption = 'Password'
ExplicitLeft = 392
end
object Label3: TLabel
Left = 465
Top = 105
Width = 22
Height = 13
Anchors = [akTop, akRight]
Caption = 'Host'
ExplicitLeft = 392
end
object btOK: TBitBtn
Left = 444
Top = 445
Width = 72
Height = 25
Anchors = [akRight, akBottom]
Kind = bkOK
NumGlyphs = 2
TabOrder = 1
OnClick = btOKClick
end
object BitBtn2: TBitBtn
Left = 523
Top = 445
Width = 73
Height = 25
Anchors = [akRight, akBottom]
Kind = bkCancel
NumGlyphs = 2
TabOrder = 2
OnClick = BitBtn2Click
end
object edUser: TEdit
Left = 465
Top = 24
Width = 114
Height = 21
Anchors = [akTop, akRight]
TabOrder = 3
end
object edPass: TEdit
Left = 465
Top = 72
Width = 114
Height = 21
Anchors = [akTop, akRight]
PasswordChar = '*'
TabOrder = 4
end
object edHost: TEdit
Left = 465
Top = 120
Width = 114
Height = 21
Anchors = [akTop, akRight]
TabOrder = 5
end
object panelFilter: TPanel
Left = 17
Top = 446
Width = 399
Height = 17
Hint = 'Press backspace to cancel'
Alignment = taLeftJustify
Anchors = [akLeft, akRight, akBottom]
BevelOuter = bvNone
Caption = 'Filter'
Color = clInactiveCaption
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 6
Visible = False
end
object Panel1: TPanel
Left = 17
Top = 16
Width = 400
Height = 431
Anchors = [akLeft, akTop, akRight, akBottom]
BevelOuter = bvNone
Caption = 'Panel1'
TabOrder = 0
object KeyList: TListView
Left = 0
Top = 0
Width = 400
Height = 431
Align = alClient
Columns = <
item
AutoSize = True
Caption = 'User'
end
item
AutoSize = True
Caption = 'Host'
end
item
AutoSize = True
Caption = 'Date'
end
item
Caption = 'Pass'
Width = 0
end>
HideSelection = False
ReadOnly = True
RowSelect = True
TabOrder = 0
ViewStyle = vsReport
OnColumnClick = KeyListColumnClick
OnCompare = KeyListCompare
OnDblClick = KeyListDblClick
OnKeyPress = sgConnKeyPress
OnSelectItem = KeyListSelectItem
end
end
end