-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathspecbu.rtm
2389 lines (2389 loc) · 58.8 KB
/
specbu.rtm
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 ppReport: TppReport
AutoStop = False
PrinterSetup.BinName = 'Default'
PrinterSetup.DocumentName = 'ppReport1'
PrinterSetup.PaperName = 'Custom'
PrinterSetup.PrinterName = 'Default'
PrinterSetup.mmMarginBottom = 0
PrinterSetup.mmMarginLeft = 0
PrinterSetup.mmMarginRight = 0
PrinterSetup.mmMarginTop = 0
PrinterSetup.mmPaperHeight = 297000
PrinterSetup.mmPaperWidth = 210000
PrinterSetup.PaperSize = 256
Template.FileName = 'H:\devel\git\fmk\ld\rpt\rtm\SPECBU.RTM'
Template.Format = ftASCII
Units = utMillimeters
AfterPrint = ppReportPreviewFormClose
DeviceType = 'Screen'
OnCancel = ppReportPreviewFormClose
OnPreviewFormClose = ppReportPreviewFormClose
OutlineSettings.CreateNode = True
OutlineSettings.CreatePageNodes = True
OutlineSettings.Enabled = False
OutlineSettings.Visible = False
TextSearchSettings.DefaultString = '<FindText>'
TextSearchSettings.Enabled = False
Left = 12
Top = 5
Version = '7.02'
mmColumnWidth = 297000
object ppHeaderBand1: TppHeaderBand
mmBottomOffset = 0
mmHeight = 529
mmPrintPosition = 0
end
object ppDetailBand1: TppDetailBand
mmBottomOffset = 0
mmHeight = 280988
mmPrintPosition = 0
object ppShape3: TppShape
UserName = 'Shape3'
Pen.Width = 2
mmHeight = 24342
mmLeft = 13494
mmTop = 162190
mmWidth = 181240
BandType = 4
end
object ppShape18: TppShape
UserName = 'Shape18'
Pen.Width = 2
mmHeight = 37835
mmLeft = 14023
mmTop = 78846
mmWidth = 181240
BandType = 4
end
object ppShape6: TppShape
UserName = 'Shape6'
Pen.Width = 2
mmHeight = 29369
mmLeft = 14023
mmTop = 123296
mmWidth = 181240
BandType = 4
end
object ppShape11: TppShape
UserName = 'Shape11'
Pen.Width = 2
mmHeight = 28310
mmLeft = 14023
mmTop = 43127
mmWidth = 181505
BandType = 4
end
object ppShape1: TppShape
UserName = 'Shape1'
mmHeight = 5027
mmLeft = 126736
mmTop = 48419
mmWidth = 61383
BandType = 4
end
object ppShape4: TppShape
UserName = 'Shape4'
mmHeight = 5027
mmLeft = 160867
mmTop = 59267
mmWidth = 9525
BandType = 4
end
object ppShape5: TppShape
UserName = 'Shape5'
mmHeight = 5027
mmLeft = 173038
mmTop = 59267
mmWidth = 19050
BandType = 4
end
object ppLine19: TppLine
UserName = 'Line19'
Position = lpLeft
Weight = 0.750000000000000000
mmHeight = 5027
mmLeft = 135996
mmTop = 48419
mmWidth = 2117
BandType = 4
end
object ppLine22: TppLine
UserName = 'Line22'
Position = lpLeft
Weight = 0.750000000000000000
mmHeight = 5027
mmLeft = 131234
mmTop = 48419
mmWidth = 2117
BandType = 4
end
object ppLine23: TppLine
UserName = 'Line23'
Position = lpLeft
Weight = 0.750000000000000000
mmHeight = 5027
mmLeft = 183092
mmTop = 48419
mmWidth = 2117
BandType = 4
end
object ppLine26: TppLine
UserName = 'Line26'
Position = lpLeft
Weight = 0.750000000000000000
mmHeight = 5027
mmLeft = 145521
mmTop = 48419
mmWidth = 2117
BandType = 4
end
object ppLine29: TppLine
UserName = 'Line29'
Position = lpLeft
Weight = 0.750000000000000000
mmHeight = 5027
mmLeft = 140759
mmTop = 48419
mmWidth = 2117
BandType = 4
end
object ppLine30: TppLine
UserName = 'Line30'
Position = lpLeft
Weight = 0.750000000000000000
mmHeight = 5027
mmLeft = 173832
mmTop = 48419
mmWidth = 2117
BandType = 4
end
object ppLine31: TppLine
UserName = 'Line31'
Position = lpLeft
Weight = 0.750000000000000000
mmHeight = 5027
mmLeft = 169069
mmTop = 48419
mmWidth = 2117
BandType = 4
end
object ppLine32: TppLine
UserName = 'Line32'
Position = lpLeft
Weight = 0.750000000000000000
mmHeight = 5027
mmLeft = 164571
mmTop = 48419
mmWidth = 2117
BandType = 4
end
object ppLine33: TppLine
UserName = 'Line33'
Position = lpLeft
Weight = 0.750000000000000000
mmHeight = 5027
mmLeft = 159809
mmTop = 48419
mmWidth = 2117
BandType = 4
end
object ppLine34: TppLine
UserName = 'Line34'
Position = lpLeft
Weight = 0.750000000000000000
mmHeight = 5027
mmLeft = 155046
mmTop = 48419
mmWidth = 2117
BandType = 4
end
object ppLine35: TppLine
UserName = 'Line35'
Position = lpLeft
Weight = 0.750000000000000000
mmHeight = 5027
mmLeft = 150284
mmTop = 48419
mmWidth = 2117
BandType = 4
end
object ppLine36: TppLine
UserName = 'Line36'
Position = lpLeft
Weight = 0.750000000000000000
mmHeight = 5027
mmLeft = 178594
mmTop = 48419
mmWidth = 2117
BandType = 4
end
object ppLine37: TppLine
UserName = 'Line37'
Position = lpLeft
Weight = 0.750000000000000000
mmHeight = 5027
mmLeft = 165365
mmTop = 59267
mmWidth = 2117
BandType = 4
end
object ppLine38: TppLine
UserName = 'Line38'
Position = lpLeft
Weight = 0.750000000000000000
mmHeight = 5027
mmLeft = 177800
mmTop = 59267
mmWidth = 2117
BandType = 4
end
object ppLine39: TppLine
UserName = 'Line39'
Position = lpLeft
Weight = 0.750000000000000000
mmHeight = 5027
mmLeft = 182298
mmTop = 59267
mmWidth = 2117
BandType = 4
end
object ppLine40: TppLine
UserName = 'Line40'
Position = lpLeft
Weight = 0.750000000000000000
mmHeight = 5027
mmLeft = 187061
mmTop = 59267
mmWidth = 2117
BandType = 4
end
object ppMemo2: TppMemo
UserName = 'Memo2'
Caption = '#NAZ#'
CharWrap = False
Font.Charset = EASTEUROPE_CHARSET
Font.Color = clBlack
Font.Name = 'SC Tahoma'
Font.Size = 11
Font.Style = []
Lines.Strings = (
'#NAZ#')
Transparent = True
mmHeight = 5027
mmLeft = 15610
mmTop = 48419
mmWidth = 107421
BandType = 4
mmBottomOffset = 0
mmOverFlowOffset = 0
mmStopPosition = 0
mmLeading = 0
end
object ppMemo3: TppMemo
UserName = 'Memo3'
ForceJustifyLastLine = True
Caption = '#MATBR#'
CharWrap = False
Font.Charset = EASTEUROPE_CHARSET
Font.Color = clBlack
Font.Name = 'SC Tahoma'
Font.Size = 9
Font.Style = []
Lines.Strings = (
'#MATBR#')
TextAlignment = taFullJustified
Transparent = True
mmHeight = 3969
mmLeft = 128059
mmTop = 48948
mmWidth = 62442
BandType = 4
mmBottomOffset = 0
mmOverFlowOffset = 0
mmStopPosition = 0
mmLeading = 0
end
object ppMemo7: TppMemo
UserName = 'Memo7'
ForceJustifyLastLine = True
Caption = '#MJOD#'
CharWrap = False
Font.Charset = EASTEUROPE_CHARSET
Font.Color = clBlack
Font.Name = 'SC Tahoma'
Font.Size = 8
Font.Style = []
Lines.Strings = (
'#MJOD#')
TextAlignment = taFullJustified
Transparent = True
mmHeight = 3704
mmLeft = 162454
mmTop = 60061
mmWidth = 8731
BandType = 4
mmBottomOffset = 0
mmOverFlowOffset = 0
mmStopPosition = 0
mmLeading = 0
end
object ppMemo8: TppMemo
UserName = 'Memo8'
ForceJustifyLastLine = True
Caption = '#GODOD#'
CharWrap = False
Font.Charset = EASTEUROPE_CHARSET
Font.Color = clBlack
Font.Name = 'SC Tahoma'
Font.Size = 9
Font.Style = []
Lines.Strings = (
'#GODOD#')
TextAlignment = taFullJustified
Transparent = True
mmHeight = 4763
mmLeft = 174361
mmTop = 59531
mmWidth = 20373
BandType = 4
mmBottomOffset = 0
mmOverFlowOffset = 0
mmStopPosition = 0
mmLeading = 0
end
object ppMemo9: TppMemo
UserName = 'Memo9'
Caption = '#U016#'
CharWrap = False
Font.Charset = EASTEUROPE_CHARSET
Font.Color = clBlack
Font.Name = 'SC Tahoma'
Font.Size = 8
Font.Style = []
Lines.Strings = (
'#U016#')
TextAlignment = taRightJustified
Transparent = True
mmHeight = 3969
mmLeft = 132557
mmTop = 65881
mmWidth = 13229
BandType = 4
mmBottomOffset = 0
mmOverFlowOffset = 0
mmStopPosition = 0
mmLeading = 0
end
object ppMemo18: TppMemo
UserName = 'Memo18'
Caption = '#DRPOSN#'
CharWrap = False
Font.Charset = EASTEUROPE_CHARSET
Font.Color = clBlack
Font.Name = 'SC Tahoma'
Font.Size = 8
Font.Style = []
Lines.Strings = (
'#DRPOSN#')
TextAlignment = taRightJustified
Transparent = True
mmHeight = 4233
mmLeft = 173567
mmTop = 142082
mmWidth = 20373
BandType = 4
mmBottomOffset = 0
mmOverFlowOffset = 0
mmStopPosition = 0
mmLeading = 0
end
object ppMemo19: TppMemo
UserName = 'Memo19'
Caption = '#DRDOH#'
CharWrap = False
Font.Charset = EASTEUROPE_CHARSET
Font.Color = clBlack
Font.Name = 'SC Tahoma'
Font.Size = 8
Font.Style = []
Lines.Strings = (
'#DRDOH#')
TextAlignment = taRightJustified
Transparent = True
mmHeight = 3969
mmLeft = 173567
mmTop = 128323
mmWidth = 20373
BandType = 4
mmBottomOffset = 0
mmOverFlowOffset = 0
mmStopPosition = 0
mmLeading = 0
end
object ppMemo44: TppMemo
UserName = 'Memo44'
Caption = '#POVDOH#'
CharWrap = False
Font.Charset = EASTEUROPE_CHARSET
Font.Color = clBlack
Font.Name = 'SC Tahoma'
Font.Size = 8
Font.Style = []
Lines.Strings = (
'#POVDOH#')
TextAlignment = taRightJustified
Transparent = True
mmHeight = 3969
mmLeft = 173302
mmTop = 93134
mmWidth = 20373
BandType = 4
mmBottomOffset = 0
mmOverFlowOffset = 0
mmStopPosition = 0
mmLeading = 0
end
object ppMemo43: TppMemo
UserName = 'Memo43'
Caption = '#POVRASH#'
CharWrap = False
Font.Charset = EASTEUROPE_CHARSET
Font.Color = clBlack
Font.Name = 'SC Tahoma'
Font.Size = 8
Font.Style = []
Lines.Strings = (
'#POVRASH#')
TextAlignment = taRightJustified
Transparent = True
mmHeight = 3969
mmLeft = 173302
mmTop = 88636
mmWidth = 20373
BandType = 4
mmBottomOffset = 0
mmOverFlowOffset = 0
mmStopPosition = 0
mmLeading = 0
end
object ppMemo42: TppMemo
UserName = 'Memo42'
Caption = '#POVPRIH#'
CharWrap = False
Font.Charset = EASTEUROPE_CHARSET
Font.Color = clBlack
Font.Name = 'SC Tahoma'
Font.Size = 8
Font.Style = []
Lines.Strings = (
'#POVPRIH#')
TextAlignment = taRightJustified
Transparent = True
mmHeight = 3969
mmLeft = 173302
mmTop = 83873
mmWidth = 20373
BandType = 4
mmBottomOffset = 0
mmOverFlowOffset = 0
mmStopPosition = 0
mmLeading = 0
end
object ppMemo41: TppMemo
UserName = 'Memo41'
Caption = '#POVPOSN#'
CharWrap = False
Font.Charset = EASTEUROPE_CHARSET
Font.Color = clBlack
Font.Name = 'SC Tahoma'
Font.Size = 8
Font.Style = []
Lines.Strings = (
'#POVPOSN#')
TextAlignment = taRightJustified
Transparent = True
mmHeight = 3704
mmLeft = 173302
mmTop = 106892
mmWidth = 20373
BandType = 4
mmBottomOffset = 0
mmOverFlowOffset = 0
mmStopPosition = 0
mmLeading = 0
end
object ppMemo26: TppMemo
UserName = 'Memo26'
Caption = '#DRDPIO#'
CharWrap = False
Font.Charset = EASTEUROPE_CHARSET
Font.Color = clBlack
Font.Name = 'SC Tahoma'
Font.Size = 8
Font.Style = []
Lines.Strings = (
'#DRDPIO#')
TextAlignment = taRightJustified
Transparent = True
mmHeight = 3969
mmLeft = 173567
mmTop = 137584
mmWidth = 20373
BandType = 4
mmBottomOffset = 0
mmOverFlowOffset = 0
mmStopPosition = 0
mmLeading = 0
end
object ppMemo24: TppMemo
UserName = 'Memo24'
Caption = '#DRDZDR#'
CharWrap = False
Font.Charset = EASTEUROPE_CHARSET
Font.Color = clBlack
Font.Name = 'SC Tahoma'
Font.Size = 8
Font.Style = []
Lines.Strings = (
'#DRDZDR#')
TextAlignment = taRightJustified
Transparent = True
mmHeight = 3969
mmLeft = 173567
mmTop = 133086
mmWidth = 20373
BandType = 4
mmBottomOffset = 0
mmOverFlowOffset = 0
mmStopPosition = 0
mmLeading = 0
end
object ppMemo23: TppMemo
UserName = 'Memo23'
Caption = '#DZDRU#'
CharWrap = False
Font.Charset = EASTEUROPE_CHARSET
Font.Color = clBlack
Font.Name = 'SC Tahoma'
Font.Size = 9
Font.Style = []
Lines.Strings = (
'#DZDRU#')
TextAlignment = taRightJustified
Transparent = True
mmHeight = 3969
mmLeft = 165629
mmTop = 167217
mmWidth = 26723
BandType = 4
mmBottomOffset = 0
mmOverFlowOffset = 0
mmStopPosition = 0
mmLeading = 0
end
object ppMemo54: TppMemo
UserName = 'Memo54'
Caption = '#DPIOU#'
CharWrap = False
Font.Charset = EASTEUROPE_CHARSET
Font.Color = clBlack
Font.Name = 'SC Tahoma'
Font.Size = 9
Font.Style = []
Lines.Strings = (
'#DPIOU#')
TextAlignment = taRightJustified
Transparent = True
mmHeight = 3969
mmLeft = 165629
mmTop = 171715
mmWidth = 26723
BandType = 4
mmBottomOffset = 0
mmOverFlowOffset = 0
mmStopPosition = 0
mmLeading = 0
end
object ppMemo55: TppMemo
UserName = 'Memo55'
Caption = '#POREZ#'
CharWrap = False
Font.Charset = EASTEUROPE_CHARSET
Font.Color = clBlack
Font.Name = 'SC Tahoma'
Font.Size = 9
Font.Style = []
Lines.Strings = (
'#POREZ#')
TextAlignment = taRightJustified
Transparent = True
mmHeight = 4233
mmLeft = 165629
mmTop = 176477
mmWidth = 26723
BandType = 4
mmBottomOffset = 0
mmOverFlowOffset = 0
mmStopPosition = 0
mmLeading = 0
end
object ppMemo56: TppMemo
UserName = 'Memo56'
Caption = '#UKOBAV#'
CharWrap = False
Font.Charset = EASTEUROPE_CHARSET
Font.Color = clBlack
Font.Name = 'SC Tahoma'
Font.Size = 9
Font.Style = []
Lines.Strings = (
'#UKOBAV#')
TextAlignment = taRightJustified
Transparent = True
mmHeight = 3969
mmLeft = 165629
mmTop = 181240
mmWidth = 26723
BandType = 4
mmBottomOffset = 0
mmOverFlowOffset = 0
mmStopPosition = 0
mmLeading = 0
end
object ppShape10: TppShape
UserName = 'Shape10'
Pen.Width = 2
mmHeight = 27252
mmLeft = 14288
mmTop = 8202
mmWidth = 180975
BandType = 4
end
object ppLine1: TppLine
UserName = 'Line1'
Position = lpLeft
Weight = 0.750000000000000000
mmHeight = 26723
mmLeft = 53446
mmTop = 8202
mmWidth = 8467
BandType = 4
end
object ppLine65: TppLine
UserName = 'Line65'
Position = lpLeft
Weight = 0.750000000000000000
mmHeight = 26723
mmLeft = 152929
mmTop = 8467
mmWidth = 8467
BandType = 4
end
object ppLabel3: TppLabel
UserName = 'Label1'
CharWrap = True
Caption = 'Za slu'#382'benu'
Font.Charset = EASTEUROPE_CHARSET
Font.Color = clGray
Font.Name = 'SC Tahoma'
Font.Size = 16
Font.Style = [fsBold]
Transparent = True
mmHeight = 6615
mmLeft = 157030
mmTop = 12965
mmWidth = 32544
BandType = 4
end
object ppLabel5: TppLabel
UserName = 'Label3'
Caption = 'FEDERACIJA BOSNE I HERCEGOVINE'
Font.Charset = EASTEUROPE_CHARSET
Font.Color = clBlack
Font.Name = 'SC Tahoma'
Font.Size = 8
Font.Style = []
TextAlignment = taCentered
Transparent = True
WordWrap = True
mmHeight = 6879
mmLeft = 20504
mmTop = 14023
mmWidth = 27781
BandType = 4
end
object ppLabel6: TppLabel
UserName = 'Label5'
Caption = 'Bosna i Hercegovina'
Font.Charset = EASTEUROPE_CHARSET
Font.Color = clBlack
Font.Name = 'SC Tahoma'
Font.Size = 8
Font.Style = [fsBold]
TextAlignment = taCentered
Transparent = True
mmHeight = 3440
mmLeft = 18256
mmTop = 10054
mmWidth = 33073
BandType = 4
end
object ppLabel63: TppLabel
UserName = 'Label63'
Caption = 'Federalno ministarstvo financija/finansija'
Font.Charset = EASTEUROPE_CHARSET
Font.Color = clBlack
Font.Name = 'SC Tahoma'
Font.Size = 8
Font.Style = [fsBold]
TextAlignment = taCentered
Transparent = True
WordWrap = True
mmHeight = 7408
mmLeft = 16669
mmTop = 21167
mmWidth = 36248
BandType = 4
end
object ppLabel71: TppLabel
UserName = 'Label71'
Caption = 'POREZNA UPRAVA'
Font.Charset = EASTEUROPE_CHARSET
Font.Color = clBlack
Font.Name = 'SC Tahoma'
Font.Size = 8
Font.Style = []
TextAlignment = taCentered
Transparent = True
WordWrap = True
mmHeight = 3969
mmLeft = 17198
mmTop = 28840
mmWidth = 35454
BandType = 4
end
object ppLabel79: TppLabel
UserName = 'Label6'
Caption = 'Obrazac 2003'
Font.Charset = EASTEUROPE_CHARSET
Font.Color = clBlack
Font.Name = 'SC Tahoma'
Font.Size = 8
Font.Style = [fsBold]
Transparent = True
mmHeight = 3440
mmLeft = 89165
mmTop = 9260
mmWidth = 20902
BandType = 4
end
object ppLabel85: TppLabel
UserName = 'Label79'
Caption = 'Specifikacija uz isplatu primanja'
Font.Charset = EASTEUROPE_CHARSET
Font.Color = clBlack
Font.Name = 'SC Tahoma'
Font.Size = 16
Font.Style = [fsBold]
Transparent = True
mmHeight = 6615
mmLeft = 59796
mmTop = 13758
mmWidth = 88371
BandType = 4
end
object ppLabel86: TppLabel
UserName = 'Label80'
Caption = 'po osnovu drugih samostalnih djelatnosti'
Font.Charset = EASTEUROPE_CHARSET
Font.Color = clBlack
Font.Name = 'SC Tahoma'
Font.Size = 10
Font.Style = [fsBold]
Transparent = True
mmHeight = 4233
mmLeft = 67998
mmTop = 22225
mmWidth = 72231
BandType = 4
end
object ppLabel87: TppLabel
UserName = 'Label85'
Caption = 'Dio 1 - Podaci o isplatiocu'
Font.Charset = EASTEUROPE_CHARSET
Font.Color = clBlack
Font.Name = 'SC Tahoma'
Font.Size = 8
Font.Style = [fsBold]
Transparent = True
mmHeight = 3440
mmLeft = 84138
mmTop = 39158
mmWidth = 40481
BandType = 4
end
object ppLine2: TppLine
UserName = 'Line2'
Weight = 0.750000000000000000
mmHeight = 1852
mmLeft = 14552
mmTop = 53975
mmWidth = 180711
BandType = 4
end
object ppLine3: TppLine
UserName = 'Line3'
Position = lpLeft
Weight = 0.750000000000000000
mmHeight = 11113
mmLeft = 123561
mmTop = 43127
mmWidth = 2910
BandType = 4
end
object ppLabel4: TppLabel
UserName = 'Label4'
Caption = '1) Naziv'
Font.Charset = EASTEUROPE_CHARSET
Font.Color = clBlack
Font.Name = 'SC Tahoma'
Font.Size = 7
Font.Style = [fsBold]
Transparent = True
mmHeight = 3704
mmLeft = 15081
mmTop = 43921
mmWidth = 11906
BandType = 4
end
object ppLabel7: TppLabel
UserName = 'Label7'
Caption = '2) JIB/JMB'
Font.Charset = EASTEUROPE_CHARSET
Font.Color = clBlack
Font.Name = 'SC Tahoma'
Font.Size = 7
Font.Style = [fsBold]
Transparent = True
mmHeight = 4233
mmLeft = 124619
mmTop = 44186
mmWidth = 15610
BandType = 4
end
object ppLine4: TppLine
UserName = 'Line4'
Weight = 0.750000000000000000
mmHeight = 1852
mmLeft = 14552
mmTop = 64823
mmWidth = 180711
BandType = 4
end
object ppLine20: TppLine
UserName = 'Line20'
Position = lpLeft
Weight = 0.750000000000000000
mmHeight = 11113
mmLeft = 82550
mmTop = 53975
mmWidth = 2910
BandType = 4
end
object ppLine21: TppLine
UserName = 'Line201'
Position = lpLeft
Weight = 0.750000000000000000
mmHeight = 16933
mmLeft = 147902
mmTop = 53975
mmWidth = 2910
BandType = 4
end
object ppLine24: TppLine
UserName = 'Line202'
Position = lpLeft
Weight = 0.750000000000000000
mmHeight = 6085
mmLeft = 120650
mmTop = 64823
mmWidth = 2910
BandType = 4
end
object ppLabel8: TppLabel
UserName = 'Label8'
Caption = '3) Adresa'
Font.Charset = EASTEUROPE_CHARSET
Font.Color = clBlack
Font.Name = 'SC Tahoma'
Font.Size = 7
Font.Style = [fsBold]
Transparent = True
mmHeight = 2910
mmLeft = 15346
mmTop = 54504
mmWidth = 12435
BandType = 4
end
object ppLabel9: TppLabel
UserName = 'Label9'
Caption = '4) Op'#263'ina'
Font.Charset = EASTEUROPE_CHARSET
Font.Color = clBlack
Font.Name = 'SC Tahoma'
Font.Size = 7
Font.Style = [fsBold]
Transparent = True
mmHeight = 2910
mmLeft = 82815
mmTop = 54504
mmWidth = 12435
BandType = 4
end
object ppLabel10: TppLabel
UserName = 'Label10'
Caption = '/'
Font.Charset = EASTEUROPE_CHARSET
Font.Color = clBlack
Font.Name = 'SC Tahoma'
Font.Size = 10
Font.Style = []
Transparent = True
mmHeight = 4233
mmLeft = 171186
mmTop = 59796
mmWidth = 2117
BandType = 4
end
object ppShape2: TppShape
UserName = 'Shape2'
mmHeight = 5027
mmLeft = 148696
mmTop = 59267
mmWidth = 9525
BandType = 4
end
object ppLine27: TppLine
UserName = 'Line27'
Position = lpLeft
Weight = 0.750000000000000000
mmHeight = 5027
mmLeft = 153194
mmTop = 59267
mmWidth = 2117
BandType = 4
end
object ppMemo5: TppMemo
UserName = 'Memo5'
ForceJustifyLastLine = True
Caption = '#DNOD#'
CharWrap = False
Font.Charset = EASTEUROPE_CHARSET
Font.Color = clBlack
Font.Name = 'SC Tahoma'
Font.Size = 8
Font.Style = []
Lines.Strings = (
'#DANOD#')
TextAlignment = taFullJustified
Transparent = True
mmHeight = 3704
mmLeft = 150284
mmTop = 60061
mmWidth = 8731
BandType = 4
mmBottomOffset = 0
mmOverFlowOffset = 0
mmStopPosition = 0
mmLeading = 0
end
object ppLabel11: TppLabel