-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlistetiersfrm.lfm
57 lines (57 loc) · 1.27 KB
/
listetiersfrm.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
object ListeTiersForm: TListeTiersForm
Left = 0
Height = 556
Top = 0
Width = 424
ActiveControl = lvListeTiers
Caption = 'Tiers'
ClientHeight = 556
ClientWidth = 424
Color = clBtnFace
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
KeyPreview = True
OnActivate = FormActivate
OnClose = FormClose
OnDeactivate = FormDeactivate
OnKeyUp = FormKeyUp
OnResize = FormResize
OnShow = FormShow
PopupMenu = pmMenuContextuel
Position = poScreenCenter
Visible = False
object lvListeTiers: TListView
Left = 0
Height = 556
Top = 0
Width = 424
Align = alClient
Columns = <
item
Caption = 'Numéro'
Width = 10
end
item
Caption = 'Intitulé'
Width = 10
end>
PopupMenu = pmMenuContextuel
ReadOnly = True
RowSelect = True
TabOrder = 0
ViewStyle = vsReport
OnDblClick = lvListeTiersDblClick
OnSelectItem = lvListeTiersSelectItem
end
object pmMenuContextuel: TPopupMenu
left = 16
top = 16
object mmiEditionNouveau: TMenuItem
Action = MainForm.aliEditionNouveau
end
object mmiEditionSupp: TMenuItem
Action = MainForm.aliEditionSupp
end
end
end