This repository was archived by the owner on Aug 18, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathfsselectfields.lfm
More file actions
62 lines (62 loc) · 1.49 KB
/
fsselectfields.lfm
File metadata and controls
62 lines (62 loc) · 1.49 KB
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
object SelectFieldsForm: TSelectFieldsForm
Left = 544
Height = 366
Top = 302
Width = 293
Caption = 'Select Fields'
ClientHeight = 366
ClientWidth = 293
OnShow = FormShow
Position = poMainFormCenter
LCLVersion = '1.0.6.0'
object ButtonPanel1: TButtonPanel
Left = 6
Height = 34
Top = 326
Width = 281
OKButton.Name = 'OKButton'
OKButton.DefaultCaption = True
HelpButton.Name = 'HelpButton'
HelpButton.DefaultCaption = True
CloseButton.Name = 'CloseButton'
CloseButton.DefaultCaption = True
CancelButton.Name = 'CancelButton'
CancelButton.DefaultCaption = True
ButtonOrder = boCloseCancelOK
TabOrder = 0
ShowButtons = [pbOK, pbCancel]
end
object FieldsCheckList: TCheckListBox
Left = 0
Height = 320
Top = 0
Width = 293
Align = alClient
ItemHeight = 0
OnClickCheck = FieldsCheckListClickCheck
PopupMenu = PopupMenu1
TabOrder = 1
end
object PopupMenu1: TPopupMenu
left = 106
top = 59
object MenuItem1: TMenuItem
Action = SelectAllAction
end
object MenuItem2: TMenuItem
Action = UnSelectAllAction
end
end
object ActionList1: TActionList
left = 21
top = 176
object SelectAllAction: TAction
Caption = 'Select All'
OnExecute = SelectAllActionExecute
end
object UnSelectAllAction: TAction
Caption = 'Unselect All'
OnExecute = UnSelectAllActionExecute
end
end
end