forked from ibv/LDAP-Admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathComputer.dfm
94 lines (94 loc) · 1.66 KB
/
Computer.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
object ComputerDlg: TComputerDlg
Left = 385
Height = 251
Top = 204
Width = 313
ActiveControl = edComputername
BorderStyle = bsDialog
Caption = 'Create computer account'
ClientHeight = 251
ClientWidth = 313
Color = clBtnFace
OnClose = FormClose
OnDestroy = FormDestroy
ParentFont = True
Position = poMainFormCenter
LCLVersion = '1.6.0.4'
object Bevel1: TBevel
Left = 8
Height = 185
Top = 8
Width = 297
Shape = bsFrame
end
object Label1: TLabel
Left = 24
Height = 15
Top = 32
Width = 105
Caption = '&Computername:'
ParentColor = False
end
object Label2: TLabel
Left = 24
Height = 15
Top = 128
Width = 72
Caption = 'D&escription'
ParentColor = False
end
object Label3: TLabel
Left = 24
Height = 15
Top = 80
Width = 54
Caption = '&Domain:'
ParentColor = False
end
object OKBtn: TButton
Left = 79
Height = 25
Top = 212
Width = 75
Caption = '&OK'
Default = True
Enabled = False
ModalResult = 1
TabOrder = 3
end
object CancelBtn: TButton
Left = 159
Height = 25
Top = 212
Width = 75
Cancel = True
Caption = '&Cancel'
ModalResult = 2
TabOrder = 4
end
object edComputername: TEdit
Left = 24
Height = 21
Top = 48
Width = 265
MaxLength = 15
OnChange = edComputernameChange
TabOrder = 0
end
object edDescription: TEdit
Left = 24
Height = 21
Top = 144
Width = 265
TabOrder = 2
end
object cbDomain: TComboBox
Left = 24
Height = 27
Top = 96
Width = 265
ItemHeight = 0
Style = csDropDownList
TabOrder = 1
end
end