-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdetailfrm.lfm
818 lines (818 loc) · 24.4 KB
/
detailfrm.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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
object DetailForm: TDetailForm
Left = 0
Height = 360
Top = 0
Width = 434
ActiveControl = pgcTiers
BorderStyle = bsSingle
Caption = 'Tiers'
ClientHeight = 360
ClientWidth = 434
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Microsoft Sans Serif'
FormStyle = fsStayOnTop
KeyPreview = True
OnClose = FormClose
OnDestroy = FormDestroy
OnShow = FormShow
Position = poDefault
Visible = False
object pgcTiers: TPageControl
Left = 8
Height = 352
Top = 8
Width = 416
ActivePage = tshCoord
TabIndex = 0
TabOrder = 0
OnChange = pgcTiersChange
object tshCoord: TTabSheet
Caption = 'Coordonnées'
ClientHeight = 326
ClientWidth = 408
object lblNum: TLabel
Left = 8
Height = 13
Top = 12
Width = 43
Caption = 'Numéro :'
Layout = tlCenter
ParentColor = False
end
object lblTxtNum: TLabel
Left = 64
Height = 1
Top = 12
Width = 1
Color = clDefault
Font.Color = clWindowText
Font.Height = -11
ParentColor = False
ParentFont = False
Transparent = False
end
object lblTypeTiers: TLabel
Left = 248
Height = 1
Top = 12
Width = 1
Color = clDefault
Layout = tlCenter
ParentColor = False
Transparent = False
end
object lblType: TLabel
Left = 200
Height = 13
Top = 12
Width = 30
Caption = 'Type :'
ParentColor = False
end
object ledtIntitule: TLabeledEdit
Left = 64
Height = 21
Top = 40
Width = 128
EditLabel.AnchorSideTop.Control = ledtIntitule
EditLabel.AnchorSideTop.Side = asrCenter
EditLabel.AnchorSideRight.Control = ledtIntitule
EditLabel.AnchorSideBottom.Control = ledtIntitule
EditLabel.AnchorSideBottom.Side = asrBottom
EditLabel.Left = 3
EditLabel.Height = 13
EditLabel.Top = 44
EditLabel.Width = 58
EditLabel.Caption = 'Intitulé '
EditLabel.ParentColor = False
EditLabel.ParentFont = False
EditLabel.Font.Height = -11
EditLabel.Layout = tlCenter
LabelPosition = lpLeft
MaxLength = 35
TabOrder = 0
end
object ledtContact: TLabeledEdit
Left = 248
Height = 21
Top = 40
Width = 144
EditLabel.AnchorSideTop.Control = ledtContact
EditLabel.AnchorSideTop.Side = asrCenter
EditLabel.AnchorSideRight.Control = ledtContact
EditLabel.AnchorSideBottom.Control = ledtContact
EditLabel.AnchorSideBottom.Side = asrBottom
EditLabel.Left = 199
EditLabel.Height = 13
EditLabel.Top = 44
EditLabel.Width = 46
EditLabel.Caption = 'Contact '
EditLabel.ParentColor = False
EditLabel.Layout = tlCenter
LabelPosition = lpLeft
MaxLength = 35
TabOrder = 1
end
object gb1: TGroupBox
Left = 8
Height = 128
Top = 72
Width = 392
Caption = 'Coordonnées postales'
ClientHeight = 110
ClientWidth = 388
TabOrder = 2
object ledtAdresse: TLabeledEdit
Left = 80
Height = 21
Top = 10
Width = 304
EditLabel.AnchorSideTop.Control = ledtAdresse
EditLabel.AnchorSideTop.Side = asrCenter
EditLabel.AnchorSideRight.Control = ledtAdresse
EditLabel.AnchorSideBottom.Control = ledtAdresse
EditLabel.AnchorSideBottom.Side = asrBottom
EditLabel.Left = 9
EditLabel.Height = 13
EditLabel.Top = 14
EditLabel.Width = 68
EditLabel.Caption = 'Adresse '
EditLabel.ParentColor = False
EditLabel.Layout = tlCenter
LabelPosition = lpLeft
MaxLength = 35
TabOrder = 0
end
object ledtComplement: TLabeledEdit
Left = 80
Height = 21
Top = 34
Width = 304
EditLabel.AnchorSideTop.Control = ledtComplement
EditLabel.AnchorSideTop.Side = asrCenter
EditLabel.AnchorSideRight.Control = ledtComplement
EditLabel.AnchorSideBottom.Control = ledtComplement
EditLabel.AnchorSideBottom.Side = asrBottom
EditLabel.Left = 7
EditLabel.Height = 13
EditLabel.Top = 38
EditLabel.Width = 70
EditLabel.Caption = 'Complément '
EditLabel.ParentColor = False
LabelPosition = lpLeft
MaxLength = 35
TabOrder = 1
end
object ledtCP: TLabeledEdit
Left = 80
Height = 21
Top = 58
Width = 96
EditLabel.AnchorSideTop.Control = ledtCP
EditLabel.AnchorSideTop.Side = asrCenter
EditLabel.AnchorSideRight.Control = ledtCP
EditLabel.AnchorSideBottom.Control = ledtCP
EditLabel.AnchorSideBottom.Side = asrBottom
EditLabel.Left = 6
EditLabel.Height = 13
EditLabel.Top = 62
EditLabel.Width = 71
EditLabel.Caption = 'Code postal '
EditLabel.ParentColor = False
EditLabel.Layout = tlCenter
LabelPosition = lpLeft
MaxLength = 9
TabOrder = 2
end
object ledtPays: TLabeledEdit
Left = 232
Height = 21
Top = 82
Width = 152
EditLabel.AnchorSideTop.Control = ledtPays
EditLabel.AnchorSideTop.Side = asrCenter
EditLabel.AnchorSideRight.Control = ledtPays
EditLabel.AnchorSideBottom.Control = ledtPays
EditLabel.AnchorSideBottom.Side = asrBottom
EditLabel.Left = 182
EditLabel.Height = 13
EditLabel.Top = 86
EditLabel.Width = 47
EditLabel.Caption = 'Pays '
EditLabel.Color = clDefault
EditLabel.ParentColor = False
EditLabel.ParentShowHint = False
EditLabel.Layout = tlCenter
LabelPosition = lpLeft
MaxLength = 35
TabOrder = 5
end
object ledtRegion: TLabeledEdit
Left = 80
Height = 21
Top = 82
Width = 96
EditLabel.AnchorSideTop.Control = ledtRegion
EditLabel.AnchorSideTop.Side = asrCenter
EditLabel.AnchorSideRight.Control = ledtRegion
EditLabel.AnchorSideBottom.Control = ledtRegion
EditLabel.AnchorSideBottom.Side = asrBottom
EditLabel.Left = 7
EditLabel.Height = 13
EditLabel.Top = 86
EditLabel.Width = 70
EditLabel.Caption = 'Région '
EditLabel.Color = clDefault
EditLabel.ParentColor = False
EditLabel.Layout = tlCenter
LabelPosition = lpLeft
MaxLength = 25
TabOrder = 4
end
object ledtVille: TLabeledEdit
Left = 232
Height = 21
Top = 58
Width = 152
EditLabel.AnchorSideTop.Control = ledtVille
EditLabel.AnchorSideTop.Side = asrCenter
EditLabel.AnchorSideRight.Control = ledtVille
EditLabel.AnchorSideBottom.Control = ledtVille
EditLabel.AnchorSideBottom.Side = asrBottom
EditLabel.Left = 183
EditLabel.Height = 13
EditLabel.Top = 62
EditLabel.Width = 46
EditLabel.Caption = 'Ville '
EditLabel.Color = clDefault
EditLabel.ParentColor = False
LabelPosition = lpLeft
MaxLength = 35
TabOrder = 3
end
end
object gb2: TGroupBox
Left = 8
Height = 104
Top = 208
Width = 392
Caption = 'Télécommunication'
ClientHeight = 86
ClientWidth = 388
TabOrder = 3
object ledtEMail: TLabeledEdit
Left = 72
Height = 21
Top = 34
Width = 312
EditLabel.AnchorSideTop.Control = ledtEMail
EditLabel.AnchorSideTop.Side = asrCenter
EditLabel.AnchorSideRight.Control = ledtEMail
EditLabel.AnchorSideBottom.Control = ledtEMail
EditLabel.AnchorSideBottom.Side = asrBottom
EditLabel.Left = 9
EditLabel.Height = 13
EditLabel.Top = 38
EditLabel.Width = 28
EditLabel.Caption = 'E-mail'
EditLabel.ParentColor = False
EditLabel.Layout = tlCenter
LabelPosition = lpLeft
LabelSpacing = 35
MaxLength = 69
TabOrder = 2
end
object ledtSite: TLabeledEdit
Left = 72
Height = 21
Top = 58
Width = 312
EditLabel.AnchorSideTop.Control = ledtSite
EditLabel.AnchorSideTop.Side = asrCenter
EditLabel.AnchorSideRight.Control = ledtSite
EditLabel.AnchorSideBottom.Control = ledtSite
EditLabel.AnchorSideBottom.Side = asrBottom
EditLabel.Left = 9
EditLabel.Height = 13
EditLabel.Top = 62
EditLabel.Width = 44
EditLabel.Caption = 'Site Web'
EditLabel.ParentColor = False
EditLabel.Layout = tlCenter
LabelPosition = lpLeft
LabelSpacing = 19
MaxLength = 69
TabOrder = 3
end
object ledtTelecopie: TLabeledEdit
Left = 264
Height = 21
Top = 10
Width = 120
EditLabel.AnchorSideTop.Control = ledtTelecopie
EditLabel.AnchorSideTop.Side = asrCenter
EditLabel.AnchorSideRight.Control = ledtTelecopie
EditLabel.AnchorSideBottom.Control = ledtTelecopie
EditLabel.AnchorSideBottom.Side = asrBottom
EditLabel.Left = 191
EditLabel.Height = 13
EditLabel.Top = 14
EditLabel.Width = 47
EditLabel.Caption = 'Télécopie'
EditLabel.ParentColor = False
LabelPosition = lpLeft
LabelSpacing = 26
MaxLength = 21
TabOrder = 1
end
object ledtTelephone: TLabeledEdit
Left = 72
Height = 21
Top = 10
Width = 112
EditLabel.AnchorSideTop.Control = ledtTelephone
EditLabel.AnchorSideTop.Side = asrCenter
EditLabel.AnchorSideRight.Control = ledtTelephone
EditLabel.AnchorSideBottom.Control = ledtTelephone
EditLabel.AnchorSideBottom.Side = asrBottom
EditLabel.Left = 8
EditLabel.Height = 13
EditLabel.Top = 14
EditLabel.Width = 51
EditLabel.Caption = 'Téléphone'
EditLabel.ParentColor = False
EditLabel.Layout = tlCenter
LabelPosition = lpLeft
LabelSpacing = 13
MaxLength = 21
TabOrder = 0
end
end
end
object tshBanque: TTabSheet
Caption = 'Banques'
ClientHeight = 326
ClientWidth = 408
ImageIndex = 1
ParentShowHint = False
PopupMenu = pmMnuBqe
object lbl33: TLabel
Left = 120
Height = 13
Top = 16
Width = 27
Alignment = taCenter
Caption = 'R.I.B.'
ParentColor = False
end
object lbl34: TLabel
Left = 288
Height = 13
Top = 16
Width = 33
Alignment = taCenter
Caption = 'Devise'
ParentColor = False
end
object lbl13: TLabel
Left = 8
Height = 13
Top = 228
Width = 33
Caption = 'Devise'
Layout = tlCenter
ParentColor = False
end
object ledtBqIntitule: TLabeledEdit
Left = 80
Height = 21
Top = 200
Width = 320
EditLabel.AnchorSideTop.Control = ledtBqIntitule
EditLabel.AnchorSideTop.Side = asrCenter
EditLabel.AnchorSideRight.Control = ledtBqIntitule
EditLabel.AnchorSideBottom.Control = ledtBqIntitule
EditLabel.AnchorSideBottom.Side = asrBottom
EditLabel.Left = 8
EditLabel.Height = 13
EditLabel.Top = 204
EditLabel.Width = 31
EditLabel.Caption = 'Intitulé'
EditLabel.ParentColor = False
EditLabel.Layout = tlCenter
LabelPosition = lpLeft
LabelSpacing = 41
MaxLength = 35
TabOrder = 0
end
object ledtBqCode: TLabeledEdit
Left = 8
Height = 21
Top = 272
Width = 120
EditLabel.AnchorSideLeft.Control = ledtBqCode
EditLabel.AnchorSideRight.Control = ledtBqCode
EditLabel.AnchorSideRight.Side = asrBottom
EditLabel.AnchorSideBottom.Control = ledtBqCode
EditLabel.Left = 8
EditLabel.Height = 13
EditLabel.Top = 256
EditLabel.Width = 120
EditLabel.Caption = ' Code banque'
EditLabel.ParentColor = False
EditLabel.Layout = tlCenter
MaxLength = 5
TabOrder = 1
end
object ledtBqGuichet: TLabeledEdit
Left = 128
Height = 21
Top = 272
Width = 120
EditLabel.AnchorSideLeft.Control = ledtBqGuichet
EditLabel.AnchorSideRight.Control = ledtBqGuichet
EditLabel.AnchorSideRight.Side = asrBottom
EditLabel.AnchorSideBottom.Control = ledtBqGuichet
EditLabel.Left = 128
EditLabel.Height = 13
EditLabel.Top = 256
EditLabel.Width = 120
EditLabel.Caption = ' Code guichet'
EditLabel.ParentColor = False
MaxLength = 5
TabOrder = 2
end
object ledtBqNumCpte: TLabeledEdit
Left = 248
Height = 21
Top = 272
Width = 120
EditLabel.AnchorSideLeft.Control = ledtBqNumCpte
EditLabel.AnchorSideRight.Control = ledtBqNumCpte
EditLabel.AnchorSideRight.Side = asrBottom
EditLabel.AnchorSideBottom.Control = ledtBqNumCpte
EditLabel.Left = 248
EditLabel.Height = 13
EditLabel.Top = 256
EditLabel.Width = 120
EditLabel.Caption = ' N° de compte'
EditLabel.ParentColor = False
MaxLength = 11
TabOrder = 3
end
object ledtBqCle: TLabeledEdit
Left = 368
Height = 21
Top = 272
Width = 32
EditLabel.AnchorSideLeft.Control = ledtBqCle
EditLabel.AnchorSideRight.Control = ledtBqCle
EditLabel.AnchorSideRight.Side = asrBottom
EditLabel.AnchorSideBottom.Control = ledtBqCle
EditLabel.Left = 368
EditLabel.Height = 13
EditLabel.Top = 256
EditLabel.Width = 32
EditLabel.Caption = ' Clé'
EditLabel.ParentColor = False
MaxLength = 2
TabOrder = 4
end
object ledtBqCommentaire: TLabeledEdit
Left = 80
Height = 21
Top = 296
Width = 240
EditLabel.AnchorSideTop.Control = ledtBqCommentaire
EditLabel.AnchorSideTop.Side = asrCenter
EditLabel.AnchorSideRight.Control = ledtBqCommentaire
EditLabel.AnchorSideBottom.Control = ledtBqCommentaire
EditLabel.AnchorSideBottom.Side = asrBottom
EditLabel.Left = 8
EditLabel.Height = 13
EditLabel.Top = 300
EditLabel.Width = 61
EditLabel.Caption = 'Commentaire'
EditLabel.ParentColor = False
LabelPosition = lpLeft
LabelSpacing = 11
MaxLength = 69
TabOrder = 5
end
object chkBqPrincipale: TCheckBox
Left = 256
Height = 19
Top = 224
Width = 105
Caption = 'Banque principale'
TabOrder = 6
end
object cbBqDevise: TComboBox
Left = 80
Height = 21
Top = 224
Width = 168
ItemHeight = 13
Style = csDropDownList
TabOrder = 7
end
object btnBqValider: TButton
Left = 328
Height = 23
Top = 296
Width = 75
Caption = 'Valider'
OnClick = btnBqValiderClick
TabOrder = 8
end
object lvBanque: TListView
Left = 8
Height = 160
Top = 32
Width = 392
Columns = <
item
Caption = 'Banque'
Width = 106
end
item
Caption = 'R.I.B.'
Width = 172
end
item
AutoSize = True
Caption = 'Devise'
Width = 49
end>
PopupMenu = pmMnuBqe
RowSelect = True
ShowColumnHeaders = False
TabOrder = 9
ViewStyle = vsReport
OnSelectItem = lvBanqueSelectItem
end
object lbl32: TLabel
Left = 16
Height = 13
Top = 16
Width = 37
Alignment = taCenter
Caption = 'Banque'
ParentColor = False
end
end
object tshContact: TTabSheet
Caption = 'Contacts'
ClientHeight = 326
ClientWidth = 408
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Microsoft Sans Serif'
ImageIndex = 2
ParentFont = False
PopupMenu = pmMnuCtc
object lbl19: TLabel
Left = 16
Height = 13
Top = 16
Width = 37
Caption = 'Contact'
ParentColor = False
end
object lbl20: TLabel
Left = 104
Height = 13
Top = 16
Width = 41
Caption = 'Fonction'
Layout = tlCenter
ParentColor = False
end
object lbl21: TLabel
Left = 200
Height = 13
Top = 16
Width = 51
Caption = 'Téléphone'
Layout = tlCenter
ParentColor = False
end
object lbl22: TLabel
Left = 296
Height = 13
Top = 16
Width = 39
Caption = 'Portable'
Layout = tlCenter
ParentColor = False
end
object lbl23: TLabel
Left = 8
Height = 13
Top = 164
Width = 22
Caption = 'Nom'
ParentColor = False
end
object lbl26: TLabel
Left = 8
Height = 13
Top = 188
Width = 36
Caption = 'Service'
ParentColor = False
end
object cbCivilite: TComboBox
Left = 72
Height = 21
Top = 160
Width = 48
ItemHeight = 13
Style = csDropDownList
TabOrder = 1
end
object cbCtcService: TComboBox
Left = 72
Height = 21
Top = 184
Width = 136
ItemHeight = 13
Style = csDropDownList
TabOrder = 4
end
object edtCtcNom: TEdit
Left = 120
Height = 21
Top = 160
Width = 88
MaxLength = 35
TabOrder = 2
end
object lvContact: TListView
Left = 8
Height = 112
Top = 32
Width = 392
Columns = <>
PopupMenu = pmMnuCtc
RowSelect = True
ShowColumnHeaders = False
TabOrder = 0
ViewStyle = vsReport
OnSelectItem = lvContactSelectItem
end
object gbCtc: TGroupBox
Left = 8
Height = 96
Top = 216
Width = 392
Caption = 'Télécommunication'
ClientHeight = 78
ClientWidth = 388
TabOrder = 6
object btnCtcVald: TButton
Left = 288
Height = 22
Top = 50
Width = 88
Caption = 'Valider'
Default = True
OnClick = btnCtcValdClick
TabOrder = 0
end
object lbl30: TLabel
Left = 8
Height = 13
Top = 24
Width = 42
Caption = 'Numéros'
ParentColor = False
end
object ledtCtcCopie: TLabeledEdit
Left = 280
Height = 21
Top = 24
Width = 104
EditLabel.AnchorSideLeft.Control = ledtCtcCopie
EditLabel.AnchorSideRight.Control = ledtCtcCopie
EditLabel.AnchorSideRight.Side = asrBottom
EditLabel.AnchorSideBottom.Control = ledtCtcCopie
EditLabel.Left = 280
EditLabel.Height = 13
EditLabel.Top = 8
EditLabel.Width = 104
EditLabel.Caption = ' Télécopie'
EditLabel.ParentColor = False
MaxLength = 35
TabOrder = 3
end
object ledtCtcMail: TLabeledEdit
Left = 72
Height = 21
Top = 51
Width = 208
EditLabel.AnchorSideTop.Control = ledtCtcMail
EditLabel.AnchorSideTop.Side = asrCenter
EditLabel.AnchorSideRight.Control = ledtCtcMail
EditLabel.AnchorSideBottom.Control = ledtCtcMail
EditLabel.AnchorSideBottom.Side = asrBottom
EditLabel.Left = 8
EditLabel.Height = 13
EditLabel.Top = 55
EditLabel.Width = 29
EditLabel.Caption = 'E-Mail'
EditLabel.ParentColor = False
LabelPosition = lpLeft
LabelSpacing = 35
MaxLength = 35
TabOrder = 4
end
object ledtCtcPortable: TLabeledEdit
Left = 176
Height = 21
Top = 24
Width = 104
EditLabel.AnchorSideLeft.Control = ledtCtcPortable
EditLabel.AnchorSideRight.Control = ledtCtcPortable
EditLabel.AnchorSideRight.Side = asrBottom
EditLabel.AnchorSideBottom.Control = ledtCtcPortable
EditLabel.Left = 176
EditLabel.Height = 13
EditLabel.Top = 8
EditLabel.Width = 104
EditLabel.Caption = ' Portable'
EditLabel.ParentColor = False
MaxLength = 35
TabOrder = 2
end
object ledtCtcTel: TLabeledEdit
Left = 72
Height = 21
Top = 24
Width = 104
EditLabel.AnchorSideLeft.Control = ledtCtcTel
EditLabel.AnchorSideRight.Control = ledtCtcTel
EditLabel.AnchorSideRight.Side = asrBottom
EditLabel.AnchorSideBottom.Control = ledtCtcTel
EditLabel.Left = 72
EditLabel.Height = 13
EditLabel.Top = 8
EditLabel.Width = 104
EditLabel.Caption = ' Téléphone'
EditLabel.ParentColor = False
MaxLength = 35
TabOrder = 1
end
end
object ledtCtcFonction: TLabeledEdit
Left = 272
Height = 21
Top = 184
Width = 128
EditLabel.AnchorSideTop.Control = ledtCtcFonction
EditLabel.AnchorSideTop.Side = asrCenter
EditLabel.AnchorSideRight.Control = ledtCtcFonction
EditLabel.AnchorSideBottom.Control = ledtCtcFonction
EditLabel.AnchorSideBottom.Side = asrBottom
EditLabel.Left = 217
EditLabel.Height = 13
EditLabel.Top = 188
EditLabel.Width = 41
EditLabel.Caption = 'Fonction'
EditLabel.ParentColor = False
LabelPosition = lpLeft
LabelSpacing = 14
MaxLength = 35
TabOrder = 5
end
object ledtCtcPrenom: TLabeledEdit
Left = 272
Height = 21
Top = 160
Width = 128
EditLabel.AnchorSideTop.Control = ledtCtcPrenom
EditLabel.AnchorSideTop.Side = asrCenter
EditLabel.AnchorSideRight.Control = ledtCtcPrenom
EditLabel.AnchorSideBottom.Control = ledtCtcPrenom
EditLabel.AnchorSideBottom.Side = asrBottom
EditLabel.Left = 217
EditLabel.Height = 13
EditLabel.Top = 164
EditLabel.Width = 36
EditLabel.Caption = 'Prénom'
EditLabel.ParentColor = False
LabelPosition = lpLeft
LabelSpacing = 19
MaxLength = 35
TabOrder = 3
end
end
end
object pmMnuBqe: TPopupMenu
left = 360
end
object pmMnuCtc: TPopupMenu
left = 272
end
end