-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuselect.lfm
139 lines (139 loc) · 2.9 KB
/
uselect.lfm
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
object FSelect: TFSelect
Left = 1423
Height = 543
Top = 184
Width = 687
Caption = 'FSelect'
ClientHeight = 543
ClientWidth = 687
OnActivate = FormActivate
OnClose = FormClose
OnCreate = FormCreate
LCLVersion = '3.0.0.1'
object dbg1: TDBGrid
Left = 16
Height = 438
Top = 8
Width = 655
Anchors = [akTop, akLeft, akRight, akBottom]
AutoAdvance = aaNone
Color = clWindow
Columns = <>
Options = [dgTitles, dgIndicator, dgColumnResize, dgColumnMove, dgColLines, dgRowLines, dgTabs, dgRowSelect, dgAlwaysShowSelection, dgConfirmDelete, dgCancelOnExit]
PopupMenu = PopupMenu1
TabOrder = 0
OnDblClick = dbg1DblClick
OnKeyDown = dbg1KeyDown
OnTitleClick = dbg1TitleClick
end
object Edit1: TEdit
AnchorSideLeft.Control = Label2
AnchorSideLeft.Side = asrBottom
Left = 78
Height = 24
Top = 451
Width = 585
Anchors = [akLeft, akRight, akBottom]
OnChange = Edit1Change
TabOrder = 1
end
object Label1: TLabel
Left = 16
Height = 16
Top = 459
Width = 41
Anchors = [akLeft, akBottom]
Caption = 'Label1'
end
object Label2: TLabel
AnchorSideLeft.Control = Label1
AnchorSideLeft.Side = asrBottom
Left = 57
Height = 16
Top = 502
Width = 21
Anchors = [akLeft, akBottom]
Caption = ' : '
end
object Panel1: TPanel
Left = 0
Height = 50
Top = 493
Width = 687
Align = alBottom
ClientHeight = 50
ClientWidth = 687
TabOrder = 2
object Button1: TButton
Left = 599
Height = 25
Top = 16
Width = 75
Anchors = [akTop, akRight]
Caption = 'Ny'
TabOrder = 0
end
object Button2: TButton
Left = 511
Height = 25
Top = 16
Width = 75
Anchors = [akTop, akRight]
Caption = 'Ret'
Default = True
TabOrder = 1
end
object Button3: TButton
Left = 423
Height = 25
Top = 16
Width = 75
Anchors = [akTop, akRight]
Caption = 'Slet'
TabOrder = 2
end
object Button4: TButton
Left = 335
Height = 25
Top = 16
Width = 75
Anchors = [akTop, akRight]
Caption = 'Afslut'
ModalResult = 11
TabOrder = 3
end
end
object PopupMenu1: TPopupMenu
Left = 480
Top = 112
object MenuItem1: TMenuItem
Action = ASelectFields
end
object MenuItem2: TMenuItem
Action = APrint
end
object MenuItem3: TMenuItem
Caption = 'AExport'
end
end
object ActionList1: TActionList
Left = 592
Top = 56
object ASelectFields: TAction
Caption = 'Vælg felter'
OnExecute = ASelectFieldsExecute
end
object APrint: TAction
Caption = 'Print'
OnExecute = APrintExecute
end
end
object PG1: TFrPrintGrid
DBGrid = dbg1
Caption = 'Grid'
PrinterIndex = -1
ShowCaption = True
Left = 488
Top = 24
end
end