-
Notifications
You must be signed in to change notification settings - Fork 0
/
URContrato.dfm
2083 lines (2080 loc) · 50.8 KB
/
URContrato.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
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
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
object frmContrato: TfrmContrato
Left = 0
Top = 0
Caption = 'frmContrato'
ClientHeight = 620
ClientWidth = 854
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
PixelsPerInch = 96
TextHeight = 13
object RLReport2: TRLReport
Left = -17
Top = -45
Width = 794
Height = 1123
Margins.BottomMargin = 5.000000000000000000
DataSource = dsTab
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
Font.Style = []
object RLBand2: TRLBand
Left = 38
Top = 38
Width = 718
Height = 1041
BeforePrint = RLBand1BeforePrint
object RLDraw10: TRLDraw
Left = 1
Top = 2
Width = 716
Height = 277
end
object RLDraw11: TRLDraw
Left = 1
Top = 374
Width = 716
Height = 283
end
object RLDraw12: TRLDraw
Left = 534
Top = 374
Width = 183
Height = 283
end
object RLImage1: TRLImage
Left = 5
Top = 6
Width = 292
Height = 101
Stretch = True
end
object RLLabel39: TRLLabel
Left = 312
Top = 62
Width = 134
Height = 45
Caption = 'Recibo'
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -40
Font.Name = 'Arial'
Font.Style = []
ParentFont = False
end
object RLDraw13: TRLDraw
Left = 427
Top = 24
Width = 27
Height = 25
end
object RLLabel40: TRLLabel
Left = 457
Top = 29
Width = 61
Height = 16
Caption = 'COMPRA'
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
end
object RLLabel41: TRLLabel
Left = 554
Top = 29
Width = 48
Height = 16
Caption = 'VENDA'
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
end
object RLDraw14: TRLDraw
Left = 524
Top = 24
Width = 27
Height = 25
end
object RLLabel42: TRLLabel
Left = 651
Top = 29
Width = 49
Height = 16
Caption = 'TROCA'
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
end
object RLDraw15: TRLDraw
Left = 621
Top = 24
Width = 27
Height = 25
end
object RLLabel43: TRLLabel
Left = 458
Top = 62
Width = 73
Height = 45
Caption = 'R$ '
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -40
Font.Name = 'Arial'
Font.Style = []
ParentFont = False
end
object RLDraw16: TRLDraw
Left = 537
Top = 59
Width = 168
Height = 48
end
object RLDBText28: TRLDBText
Left = 562
Top = 72
Width = 120
Height = 22
Alignment = taCenter
DataField = 'VLR_TRANS'
DataSource = dsTab
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -19
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
end
object RLLabel44: TRLLabel
Left = 18
Top = 116
Width = 685
Height = 16
Caption =
'Recebi do (a) Sr. (a) __________________________________________' +
'______________________________________'
end
object RLLabel45: TRLLabel
Left = 18
Top = 142
Width = 683
Height = 16
Caption =
'A import'#226'ncia de R$ ___________________________________________' +
'____________________________________'
end
object RLLabel46: TRLLabel
Left = 18
Top = 170
Width = 682
Height = 16
Caption =
'Referente a _____________________ do Ve'#237'culo Abaixo Caracterizad' +
'o: _____________________________________'
end
object RLLabel47: TRLLabel
Left = 18
Top = 197
Width = 680
Height = 16
Caption =
'Marca: __________________ Ano: _____________ Modelo: ___________' +
'________ KM: _______________________'
end
object RLLabel48: TRLLabel
Left = 18
Top = 225
Width = 681
Height = 16
Caption =
'Cor: ________________ Placa: ______________ Chassi: ____________' +
'_________ Combust'#237'vel: ________________'
end
object RLLabel49: TRLLabel
Left = 18
Top = 253
Width = 685
Height = 16
Caption =
'Forma de Pagamento: ____________________________________________' +
'______ Renavam: ___________________'
end
object lblCompra1: TRLLabel
Left = 435
Top = 29
Width = 13
Height = 16
Caption = 'X'
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
end
object lblVEnda1: TRLLabel
Left = 531
Top = 29
Width = 13
Height = 16
Caption = 'X'
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
end
object lblTroca1: TRLLabel
Left = 628
Top = 29
Width = 13
Height = 16
Caption = 'X'
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
end
object RLDBText29: TRLDBText
Left = 141
Top = 115
Width = 89
Height = 16
DataField = 'COMPRADOR'
DataSource = dsTab
end
object RLLabel53: TRLLabel
Left = 148
Top = 141
Width = 65
Height = 16
end
object RLDBText30: TRLDBText
Left = 125
Top = 169
Width = 70
Height = 16
Alignment = taCenter
DataField = 'OPERCAO'
DataSource = dsTab
end
object RLDBText31: TRLDBText
Left = 440
Top = 167
Width = 80
Height = 16
DataField = 'DESCRICAO'
DataSource = dsTab
end
object RLDBText32: TRLDBText
Left = 96
Top = 194
Width = 52
Height = 16
Alignment = taCenter
DataField = 'MARCA'
DataSource = dsTab
end
object RLDBText33: TRLDBText
Left = 252
Top = 194
Width = 32
Height = 16
Alignment = taCenter
DataField = 'ANO'
DataSource = dsTab
end
object RLDBText34: TRLDBText
Left = 392
Top = 194
Width = 60
Height = 16
Alignment = taCenter
DataField = 'MODELO'
DataSource = dsTab
end
object RLDBText35: TRLDBText
Left = 582
Top = 194
Width = 24
Height = 16
Alignment = taCenter
DataField = 'KM'
DataSource = dsTab
end
object RLDBText36: TRLDBText
Left = 83
Top = 222
Width = 32
Height = 16
Alignment = taCenter
DataField = 'COR'
DataSource = dsTab
end
object RLDBText37: TRLDBText
Left = 218
Top = 222
Width = 48
Height = 16
Alignment = taCenter
DataField = 'PLACA'
DataSource = dsTab
end
object RLDBText38: TRLDBText
Left = 360
Top = 222
Width = 52
Height = 16
DataField = 'CHASSI'
DataSource = dsTab
end
object RLDBText39: TRLDBText
Left = 582
Top = 222
Width = 96
Height = 16
Alignment = taCenter
DataField = 'COMBUSTIVEL'
DataSource = dsTab
end
object RLDBText40: TRLDBText
Left = 155
Top = 249
Width = 342
Height = 16
AutoSize = False
DataField = 'F_PAG'
DataSource = dsTab
end
object RLDBText41: TRLDBText
Left = 567
Top = 249
Width = 122
Height = 16
AutoSize = False
DataField = 'RENAVAN'
DataSource = dsTab
end
object RLLabel54: TRLLabel
Left = 5
Top = 379
Width = 311
Height = 16
Caption = 'FICA CONVENCIONADO ENTRE AS PARTES QUE:'
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
end
object RLLabel55: TRLLabel
Left = 5
Top = 401
Width = 486
Height = 16
Caption =
'1'#186' - O Comprador responder'#225' a partir desta data, civil e/ou crim' +
'inalmente por danos'
end
object RLLabel56: TRLLabel
Left = 5
Top = 420
Width = 404
Height = 16
Caption =
'recorrentes ao uso e posse do ve'#237'culo, objeto da presente transa' +
#231#227'o.'
end
object RLLabel57: TRLLabel
Left = 5
Top = 441
Width = 525
Height = 16
Caption =
'2'#186' - O Vendedor e respons'#225'vel pela quita'#231#227'o de todos os d'#233'bitos,' +
' restri'#231#245'es e aliena'#231#245'es,'
end
object RLLabel58: TRLLabel
Left = 5
Top = 460
Width = 510
Height = 16
Caption =
'IPVA, multas de tr'#226'nsitos inclusive em processamento e defesa pr' +
#233'via, danos pessoais'
end
object RLLabel59: TRLLabel
Left = 5
Top = 480
Width = 440
Height = 16
Caption =
'e materiais contra terceiros que o ve'#237'culo tenha sofrido at'#233' a p' +
'resente data.'
end
object RLLabel60: TRLLabel
Left = 5
Top = 500
Width = 530
Height = 16
Caption =
'3'#186' - O Comprador est'#225' recebendo o ve'#237'culo '#225's ________________ no' +
' estado que se encon'
end
object RLLabel61: TRLLabel
Left = 5
Top = 519
Width = 495
Height = 16
Caption =
'tra, conforme inspen'#231#227'o feita pelo mesmo, isentando-se dessa for' +
'ma, o vendedor, de'
end
object RLLabel62: TRLLabel
Left = 5
Top = 539
Width = 461
Height = 16
Caption =
'quaisquer problemas mec'#226'nicos e de funil'#225'ria que, eventualmente ' +
'venha surgir.'
end
object RLLabel63: TRLLabel
Left = 5
Top = 559
Width = 522
Height = 16
Caption =
'4'#186' - A transfer'#234'ncia defintiva ser'#225' entregue ao comprador ap'#243's a' +
' total quita'#231#227'o do ve'#237'culo.'
end
object RLLabel64: TRLLabel
Left = 5
Top = 580
Width = 513
Height = 16
Caption =
'5'#186' - Para dirimir as quest'#245'es correntes do presente contrato, se' +
'r'#225' competente o foro da '
end
object RLLabel65: TRLLabel
Left = 5
Top = 600
Width = 525
Height = 16
Caption =
'cidade de V'#225'rzea Alegre / CE, com exclus'#227'o de qualuer outro, por' +
' mais especial que seja'
end
object RLLabel66: TRLLabel
Left = 4
Top = 619
Width = 535
Height = 16
Caption =
'E por estarem as partes, assim, justas e acordadas assinam o pre' +
'sente instrumento em 02'
end
object RLLabel67: TRLLabel
Left = 4
Top = 637
Width = 145
Height = 16
Caption = '(duas) vias de igual teor.'
end
object RLDraw17: TRLDraw
Left = 1
Top = 656
Width = 716
Height = 71
end
object RLDraw18: TRLDraw
Left = 0
Top = 726
Width = 716
Height = 314
end
object RLLabel68: TRLLabel
Left = 4
Top = 730
Width = 89
Height = 16
Caption = 'DE ACORDO: '
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
end
object RLDBText42: TRLDBText
Left = 168
Top = 730
Width = 231
Height = 16
DataField = 'COD_TRANS'
DataSource = frmTransacao.dsTab
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
Text = 'N'#250'mero da Transa'#231#227'o: '
end
object RLDBText43: TRLDBText
Left = 477
Top = 730
Width = 163
Height = 16
DataField = 'DAT_CAD'
DataSource = frmTransacao.dsTab
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
Text = 'V'#225'rzea Alegre: '
end
object RLLabel69: TRLLabel
Left = 4
Top = 754
Width = 83
Height = 16
Caption = 'Comprador: '
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
end
object RLLabel70: TRLLabel
Left = 4
Top = 779
Width = 704
Height = 16
Caption =
'Nome: __________________________________________________________' +
'____________________________________'
end
object RLLabel71: TRLLabel
Left = 4
Top = 805
Width = 704
Height = 16
Caption =
'Endere'#231'o: ______________________________________________________' +
'_____________________________________'
end
object RLLabel72: TRLLabel
Left = 4
Top = 835
Width = 702
Height = 16
Caption =
'CPF / CNPJ: __________________________________RG/IE: ___________' +
'____________Fone: ____________________'
end
object RLLabel73: TRLLabel
Left = 4
Top = 863
Width = 704
Height = 16
Caption =
'Assinatura: ____________________________________________________' +
'______________________________________'
end
object RLLabel74: TRLLabel
Left = 4
Top = 1005
Width = 704
Height = 16
Caption =
'Assinatura: ____________________________________________________' +
'______________________________________'
end
object RLLabel75: TRLLabel
Left = 4
Top = 977
Width = 702
Height = 16
Caption =
'CPF / CNPJ: __________________________________RG/IE: ___________' +
'____________Fone: ____________________'
end
object RLLabel76: TRLLabel
Left = 4
Top = 947
Width = 704
Height = 16
Caption =
'Endere'#231'o: ______________________________________________________' +
'_____________________________________'
end
object RLLabel77: TRLLabel
Left = 4
Top = 921
Width = 704
Height = 16
Caption =
'Nome: __________________________________________________________' +
'____________________________________'
end
object RLLabel78: TRLLabel
Left = 4
Top = 896
Width = 70
Height = 16
Caption = 'Vendedor:'
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
end
object RLLabel79: TRLLabel
Left = 4
Top = 658
Width = 72
Height = 16
Caption = 'Observa'#231#227'o'
end
object RLDBText44: TRLDBText
Left = 49
Top = 776
Width = 649
Height = 16
AutoSize = False
DataField = 'COMPRADOR'
DataSource = dsTab
end
object RLDBText45: TRLDBText
Left = 48
Top = 918
Width = 649
Height = 16
AutoSize = False
DataField = 'VENDEDOR'
DataSource = dsTab
end
object RLDBText46: TRLDBText
Left = 72
Top = 804
Width = 625
Height = 16
AutoSize = False
DataField = 'ENDCOMP'
DataSource = dsTab
end
object RLDBText47: TRLDBText
Left = 86
Top = 833
Width = 233
Height = 16
AutoSize = False
DataField = 'CPFCOMP'
DataSource = dsTab
end
object RLDBText48: TRLDBText
Left = 364
Top = 832
Width = 156
Height = 16
AutoSize = False
DataField = 'RGCOMP'
DataSource = dsTab
end
object RLDBText49: TRLDBText
Left = 564
Top = 833
Width = 133
Height = 16
AutoSize = False
DataField = 'FONECOMP'
DataSource = dsTab
end
object RLDBText50: TRLDBText
Left = 560
Top = 974
Width = 133
Height = 16
AutoSize = False
DataField = 'FONEVEND'
DataSource = dsTab
end
object RLDBText51: TRLDBText
Left = 360
Top = 974
Width = 156
Height = 16
AutoSize = False
DataField = 'RGVEND'
DataSource = dsTab
end
object RLDBText52: TRLDBText
Left = 82
Top = 974
Width = 233
Height = 16
AutoSize = False
DataField = 'CPFVEND'
DataSource = dsTab
end
object RLDBText53: TRLDBText
Left = 68
Top = 945
Width = 625
Height = 16
AutoSize = False
DataField = 'ENDVEND'
DataSource = dsTab
end
object RLDBText54: TRLDBText
Left = 289
Top = 499
Width = 76
Height = 16
Alignment = taCenter
DataField = 'HORA_REC'
DataSource = dsTab
end
object RLDBMemo2: TRLDBMemo
Left = 4
Top = 677
Width = 708
Height = 46
AutoSize = False
Behavior = [beSiteExpander]
DataField = 'OBS'
DataSource = dsTab
end
object RLLabel80: TRLLabel
Left = 589
Top = 379
Width = 85
Height = 16
Caption = 'Faturamento'
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
end
object RLMemo1: TRLMemo
Left = 538
Top = 398
Width = 174
Height = 254
AutoSize = False
Behavior = [beSiteExpander]
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -12
Font.Name = 'Arial'
Font.Style = []
ParentFont = False
end
object RLDraw19: TRLDraw
Left = 1
Top = 278
Width = 716
Height = 97
end
object RLLabel81: TRLLabel
Left = 8
Top = 315
Width = 680
Height = 16
Caption =
'Marca: __________________ Ano: _____________ Modelo: ___________' +
'________ KM: _______________________'
end
object RLDBText55: TRLDBText
Left = 63
Top = 312
Width = 98
Height = 16
Alignment = taCenter
DataField = 'MARCA_COMP'
DataSource = dsTab
end
object RLDBText56: TRLDBText
Left = 219
Top = 312
Width = 78
Height = 16
Alignment = taCenter
DataField = 'ANO_COMP'
DataSource = dsTab
end
object RLDBText57: TRLDBText
Left = 360
Top = 312
Width = 106
Height = 16
Alignment = taCenter
DataField = 'MODELO_COMP'
DataSource = dsTab
end
object RLDBText58: TRLDBText
Left = 549
Top = 312
Width = 70
Height = 16
Alignment = taCenter
DataField = 'KM_COMP'
DataSource = dsTab
end
object RLLabel82: TRLLabel
Left = 8
Top = 343
Width = 681
Height = 16
Caption =
'Cor: ________________ Placa: ______________ Chassi: ____________' +
'_________ Combust'#237'vel: ________________'
end
object RLDBText62: TRLDBText
Left = 51
Top = 340
Width = 78
Height = 16
Alignment = taCenter
DataField = 'COR_COMP'
DataSource = dsTab
end
object RLDBText63: TRLDBText
Left = 574
Top = 340
Width = 142
Height = 16
Alignment = taCenter
DataField = 'COMBUSTIVEL_COMP'
DataSource = dsTab
end
object RLDBText64: TRLDBText
Left = 347
Top = 340
Width = 98
Height = 16
DataField = 'CHASSI_COMP'
DataSource = dsTab
end
object RLDBText65: TRLDBText
Left = 196
Top = 340
Width = 94
Height = 16
Alignment = taCenter
DataField = 'PLACA_COMP'
DataSource = dsTab
end
object RLLabel83: TRLLabel
Left = 8
Top = 290
Width = 682
Height = 16
Caption =
'Ve'#237'culo da Troca: _____________________________________Renavam: ' +
'____________________________________'
end
object RLDBText59: TRLDBText
Left = 115
Top = 288
Width = 116
Height = 16
DataField = 'DESC_VEICCOMP'
DataSource = dsTab
end
object RLDBText60: TRLDBText
Left = 440
Top = 288
Width = 122
Height = 16
AutoSize = False
DataField = 'RENAVAN_COMP'
DataSource = dsTab
end
end
end
object RLReport1: TRLReport
Left = 69
Top = 48
Width = 794
Height = 1123
Margins.BottomMargin = 5.000000000000000000
DataSource = dsTab
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
Font.Style = []
object RLBand1: TRLBand
Left = 38
Top = 38
Width = 718
Height = 1041
BeforePrint = RLBand1BeforePrint
object RLDraw1: TRLDraw
Left = 1
Top = 2
Width = 716
Height = 277
end
object RLDraw2: TRLDraw
Left = 1
Top = 374
Width = 716
Height = 283
end
object RLDraw3: TRLDraw
Left = 534
Top = 374
Width = 183
Height = 283
end
object RLLogo: TRLImage
Left = 5
Top = 6
Width = 292
Height = 101
Stretch = True
end
object RLLabel1: TRLLabel
Left = 312
Top = 62
Width = 134
Height = 45
Caption = 'Recibo'
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -40
Font.Name = 'Arial'
Font.Style = []
ParentFont = False
end
object RLDraw4: TRLDraw
Left = 427
Top = 24
Width = 27
Height = 25
end
object RLLabel2: TRLLabel
Left = 457
Top = 29
Width = 61
Height = 16
Caption = 'COMPRA'
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Arial'
Font.Style = [fsBold]
ParentFont = False
end
object RLLabel3: TRLLabel
Left = 554
Top = 29