forked from ibv/LDAP-Admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHost.dfm
135 lines (135 loc) · 2.6 KB
/
Host.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
object HostDlg: THostDlg
Left = 371
Height = 425
Top = 202
Width = 404
BorderStyle = bsDialog
Caption = 'Create host'
ClientHeight = 425
ClientWidth = 404
Color = clBtnFace
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
OnClose = FormClose
OnDestroy = FormDestroy
Position = poMainFormCenter
LCLVersion = '1.6.0.4'
object NameLabel: TLabel
Left = 16
Height = 13
Top = 16
Width = 66
Caption = '&Host name:'
ParentColor = False
end
object IPLabel: TLabel
Left = 16
Height = 13
Top = 64
Width = 65
Caption = 'IP &Address:'
ParentColor = False
end
object Label2: TLabel
Left = 16
Height = 13
Top = 112
Width = 68
Caption = '&Description:'
ParentColor = False
end
object cn: TEdit
Left = 16
Height = 19
Top = 32
Width = 369
TabOrder = 0
end
object GroupBox1: TGroupBox
Left = 16
Height = 225
Top = 160
Width = 369
Caption = ' Additional host &names: '
ClientHeight = 196
ClientWidth = 365
TabOrder = 3
object cnList: TListBox
Left = 8
Height = 145
Top = 16
Width = 353
ItemHeight = 0
OnClick = cnListClick
ScrollWidth = 349
TabOrder = 0
TopIndex = -1
end
object AddHostBtn: TButton
Left = 8
Height = 25
Top = 168
Width = 65
Caption = '&Add'
OnClick = AddHostBtnClick
TabOrder = 1
end
object EditHostBtn: TButton
Left = 80
Height = 25
Top = 168
Width = 65
Caption = '&Edit'
Enabled = False
OnClick = EditHostBtnClick
TabOrder = 2
end
object DelHostBtn: TButton
Left = 152
Height = 25
Top = 168
Width = 65
Caption = '&Remove'
Enabled = False
OnClick = DelHostBtnClick
TabOrder = 3
end
end
object OKBtn: TButton
Left = 136
Height = 25
Top = 396
Width = 75
Caption = '&OK'
Default = True
ModalResult = 1
TabOrder = 4
end
object CancelBtn: TButton
Left = 216
Height = 25
Top = 396
Width = 75
Cancel = True
Caption = '&Cancel'
ModalResult = 2
TabOrder = 5
end
object ipHostNumber: TEdit
Left = 16
Height = 19
Top = 80
Width = 369
OnChange = EditChange
TabOrder = 1
end
object description: TEdit
Left = 16
Height = 19
Top = 128
Width = 369
OnChange = EditChange
TabOrder = 2
end
end