forked from ibv/LDAP-Admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPickAttr.dfm
112 lines (112 loc) · 2.02 KB
/
PickAttr.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
object PickAttributesDlg: TPickAttributesDlg
Left = 420
Height = 376
Top = 207
Width = 409
BorderStyle = bsDialog
Caption = 'Select attributes'
ClientHeight = 376
ClientWidth = 409
Color = clBtnFace
OnClose = FormClose
ParentFont = True
Position = poScreenCenter
LCLVersion = '1.6.0.4'
object SrcLabel: TLabel
Left = 8
Height = 16
Top = 8
Width = 145
AutoSize = False
Caption = 'Available:'
ParentColor = False
end
object DstLabel: TLabel
Left = 224
Height = 16
Top = 8
Width = 145
AutoSize = False
Caption = 'Use:'
ParentColor = False
end
object IncludeBtn: TSpeedButton
Left = 190
Height = 24
Top = 32
Width = 30
Caption = '>'
OnClick = IncludeBtnClick
end
object IncAllBtn: TSpeedButton
Left = 190
Height = 24
Top = 64
Width = 30
Caption = '>>'
OnClick = IncAllBtnClick
end
object ExcludeBtn: TSpeedButton
Left = 190
Height = 24
Top = 96
Width = 30
Caption = '<'
Enabled = False
OnClick = ExcludeBtnClick
end
object ExAllBtn: TSpeedButton
Left = 190
Height = 24
Top = 128
Width = 30
Caption = '<<'
Enabled = False
OnClick = ExcAllBtnClick
end
object OKBtn: TButton
Left = 127
Height = 25
Top = 340
Width = 75
Anchors = [akRight, akBottom]
Caption = 'OK'
Default = True
ModalResult = 1
TabOrder = 0
end
object CancelBtn: TButton
Left = 207
Height = 25
Top = 340
Width = 75
Anchors = [akRight, akBottom]
Cancel = True
Caption = 'Cancel'
ModalResult = 2
TabOrder = 1
end
object SrcList: TListBox
Left = 8
Height = 281
Top = 24
Width = 177
ItemHeight = 0
MultiSelect = True
ScrollWidth = 173
Sorted = True
TabOrder = 2
TopIndex = -1
end
object DstList: TListBox
Left = 224
Height = 281
Top = 24
Width = 177
ItemHeight = 0
MultiSelect = True
ScrollWidth = 173
TabOrder = 3
TopIndex = -1
end
end