-
Notifications
You must be signed in to change notification settings - Fork 1
/
MDN110UO_P01.dfm
18507 lines (18506 loc) · 435 KB
/
MDN110UO_P01.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 MDN110FO_P01: TMDN110FO_P01
Left = -4
Top = -4
Width = 1408
Height = 1028
VertScrollBar.Position = 174
Caption = 'MDN110FO_P01 중환자실 기록지'
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = False
Scaled = False
OnClose = FormClose
OnDestroy = FormDestroy
PixelsPerInch = 96
TextHeight = 13
object qr_Report1: TQuickRep
Left = 48
Top = -129
Width = 794
Height = 1123
Frame.Color = clBlack
Frame.DrawTop = True
Frame.DrawBottom = True
Frame.DrawLeft = True
Frame.DrawRight = True
BeforePrint = qr_Report1BeforePrint
Font.Charset = HANGEUL_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = '바탕'
Font.Style = []
Functions.Strings = (
'PAGENUMBER'
'COLUMNNUMBER'
'REPORTTITLE')
Functions.DATA = (
'0'
'0'
#39#39)
Options = [FirstPageHeader, LastPageFooter]
Page.Columns = 1
Page.Orientation = poPortrait
Page.PaperSize = A4
Page.Values = (
100
2970
100
2100
100
100
0)
PrinterSettings.Copies = 1
PrinterSettings.Duplex = False
PrinterSettings.FirstPage = 0
PrinterSettings.LastPage = 0
PrinterSettings.OutputBin = Auto
PrintIfEmpty = True
SnapToGrid = True
Units = MM
Zoom = 100
object qrlb_Back1: TQRLabel
Left = 96
Top = 564
Width = 641
Height = 125
Frame.Color = clBlack
Frame.DrawTop = True
Frame.DrawBottom = True
Frame.DrawLeft = True
Frame.DrawRight = True
Size.Values = (
330.729166666667
254
1492.25
1695.97916666667)
Alignment = taLeftJustify
AlignToBand = False
AutoSize = False
AutoStretch = False
Caption = ' .'
Color = clWhite
Transparent = False
WordWrap = True
FontSize = 10
end
object QRBand1: TQRBand
Left = 38
Top = 38
Width = 718
Height = 19
Frame.Color = clBlack
Frame.DrawTop = False
Frame.DrawBottom = False
Frame.DrawLeft = False
Frame.DrawRight = False
AlignToBottom = False
Color = clWhite
ForceNewColumn = False
ForceNewPage = False
Size.Values = (
50.2708333333333
1899.70833333333)
BandType = rbTitle
end
object QRShape2: TQRShape
Left = 40
Top = 156
Width = 711
Height = 5
Frame.Color = clBlack
Frame.DrawTop = False
Frame.DrawBottom = False
Frame.DrawLeft = False
Frame.DrawRight = False
Frame.Width = 4
Size.Values = (
13.2291666666667
105.833333333333
412.75
1881.1875)
Pen.Width = 4
Shape = qrsHorLine
end
object QRShape10: TQRShape
Left = 44
Top = 64
Width = 306
Height = 86
Frame.Color = clBlack
Frame.DrawTop = False
Frame.DrawBottom = False
Frame.DrawLeft = False
Frame.DrawRight = False
Size.Values = (
227.541666666667
116.416666666667
169.333333333333
809.625)
Shape = qrsRectangle
end
object qrlb_HosName: TQRLabel
Left = 388
Top = 75
Width = 339
Height = 16
Frame.Color = clBlack
Frame.DrawTop = False
Frame.DrawBottom = False
Frame.DrawLeft = False
Frame.DrawRight = False
Size.Values = (
42.9947916666667
1025.26041666667
198.4375
896.276041666667)
Alignment = taCenter
AlignToBand = False
AutoSize = False
AutoStretch = False
Caption = '고 려 대 학 교 의 료 원'
Color = clWhite
Font.Charset = HANGEUL_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = '바탕'
Font.Style = []
ParentFont = False
Transparent = False
WordWrap = True
FontSize = 10
end
object QRLabel12: TQRLabel
Left = 400
Top = 92
Width = 330
Height = 28
Frame.Color = clBlack
Frame.DrawTop = False
Frame.DrawBottom = False
Frame.DrawLeft = False
Frame.DrawRight = False
Size.Values = (
74.0833333333333
1058.33333333333
243.416666666667
873.125)
Alignment = taCenter
AlignToBand = False
AutoSize = True
AutoStretch = True
Caption = '간 호 정 보 조 사 지 (중환자)'
Color = clWhite
Font.Charset = HANGEUL_CHARSET
Font.Color = clWindowText
Font.Height = -24
Font.Name = '바탕'
Font.Style = [fsBold]
ParentFont = False
Transparent = False
WordWrap = True
FontSize = 18
end
object QRLabel1: TQRLabel
Left = 717
Top = 132
Width = 14
Height = 16
Frame.Color = clBlack
Frame.DrawTop = False
Frame.DrawBottom = False
Frame.DrawLeft = False
Frame.DrawRight = False
Frame.Style = psClear
Size.Values = (
42.3333333333333
1897.0625
349.25
37.0416666666667)
Alignment = taCenter
AlignToBand = False
AutoSize = True
AutoStretch = False
Caption = '과'
Color = clWhite
Font.Charset = HANGEUL_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = '신명조체'
Font.Style = []
ParentFont = False
Transparent = False
WordWrap = True
FontSize = 10
end
object QRShape3: TQRShape
Left = 598
Top = 148
Width = 141
Height = 1
Frame.Color = clBlack
Frame.DrawTop = False
Frame.DrawBottom = False
Frame.DrawLeft = False
Frame.DrawRight = False
Size.Values = (
2.64583333333333
1582.20833333333
391.583333333333
373.0625)
Shape = qrsHorLine
end
object qrlb_PatNo: TQRLabel
Left = 162
Top = 77
Width = 169
Height = 14
Frame.Color = clBlack
Frame.DrawTop = False
Frame.DrawBottom = False
Frame.DrawLeft = False
Frame.DrawRight = False
Frame.Style = psClear
Size.Values = (
37.0416666666667
428.625
203.729166666667
447.145833333333)
Alignment = taLeftJustify
AlignToBand = False
AutoSize = False
AutoStretch = False
Caption = 'qrlb_PatNo'
Color = clWhite
Font.Charset = HANGEUL_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = '신명조체'
Font.Style = []
ParentFont = False
Transparent = False
WordWrap = True
FontSize = 10
end
object qrlb_PatName: TQRLabel
Left = 160
Top = 123
Width = 169
Height = 17
Frame.Color = clBlack
Frame.DrawTop = False
Frame.DrawBottom = False
Frame.DrawLeft = False
Frame.DrawRight = False
Frame.Style = psClear
Size.Values = (
44.9791666666667
423.333333333333
325.4375
447.145833333333)
Alignment = taLeftJustify
AlignToBand = False
AutoSize = False
AutoStretch = False
Caption = 'qrlb_PatName'
Color = clWhite
Font.Charset = HANGEUL_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = '신명조체'
Font.Style = []
ParentFont = False
Transparent = False
WordWrap = True
FontSize = 10
end
object qrlb_Sex: TQRLabel
Left = 162
Top = 100
Width = 169
Height = 17
Frame.Color = clBlack
Frame.DrawTop = False
Frame.DrawBottom = False
Frame.DrawLeft = False
Frame.DrawRight = False
Frame.Style = psClear
Size.Values = (
44.9791666666667
428.625
264.583333333333
447.145833333333)
Alignment = taLeftJustify
AlignToBand = False
AutoSize = False
AutoStretch = False
Caption = 'qrlb_Sex'
Color = clWhite
Font.Charset = HANGEUL_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = '신명조체'
Font.Style = []
ParentFont = False
Transparent = False
WordWrap = True
FontSize = 10
end
object QRLabel15: TQRLabel
Left = 60
Top = 180
Width = 71
Height = 16
Frame.Color = clBlack
Frame.DrawTop = False
Frame.DrawBottom = False
Frame.DrawLeft = False
Frame.DrawRight = False
Frame.Style = psClear
Size.Values = (
42.3333333333333
158.75
476.25
187.854166666667)
Alignment = taLeftJustify
AlignToBand = False
AutoSize = False
AutoStretch = False
Caption = '일반정보'
Color = clWhite
Font.Charset = HANGEUL_CHARSET
Font.Color = clWindowText
Font.Height = -15
Font.Name = '바탕'
Font.Style = [fsBold]
ParentFont = False
Transparent = False
WordWrap = True
FontSize = 11
end
object QRShape4: TQRShape
Left = 60
Top = 195
Width = 62
Height = 6
Frame.Color = clBlack
Frame.DrawTop = False
Frame.DrawBottom = False
Frame.DrawLeft = False
Frame.DrawRight = False
Frame.Style = psClear
Size.Values = (
15.875
158.75
515.9375
164.041666666667)
Shape = qrsHorLine
end
object QRLabel16: TQRLabel
Left = 72
Top = 210
Width = 71
Height = 14
Frame.Color = clBlack
Frame.DrawTop = False
Frame.DrawBottom = False
Frame.DrawLeft = False
Frame.DrawRight = False
Frame.Style = psClear
Size.Values = (
37.0416666666667
190.5
555.625
187.854166666667)
Alignment = taLeftJustify
AlignToBand = False
AutoSize = True
AutoStretch = False
Caption = '입 원 일'
Color = clWhite
Font.Charset = HANGEUL_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = '바탕체'
Font.Style = []
ParentFont = False
Transparent = False
WordWrap = True
FontSize = 10
end
object qrlb_AdmDte1: TQRLabel
Left = 152
Top = 210
Width = 81
Height = 14
Frame.Color = clBlack
Frame.DrawTop = False
Frame.DrawBottom = False
Frame.DrawLeft = False
Frame.DrawRight = False
Frame.Style = psClear
Size.Values = (
37.0416666666667
402.166666666667
555.625
214.3125)
Alignment = taCenter
AlignToBand = False
AutoSize = False
AutoStretch = False
Caption = 'qrlb_AdmDte1'
Color = clWhite
Font.Charset = HANGEUL_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = '신명조체'
Font.Style = []
ParentFont = False
Transparent = False
WordWrap = True
FontSize = 10
end
object QRShape5: TQRShape
Left = 152
Top = 221
Width = 91
Height = 6
Frame.Color = clBlack
Frame.DrawTop = False
Frame.DrawBottom = False
Frame.DrawLeft = False
Frame.DrawRight = False
Frame.Style = psClear
Size.Values = (
15.875
402.166666666667
584.729166666667
240.770833333333)
Shape = qrsHorLine
end
object QRLabel18: TQRLabel
Left = 232
Top = 210
Width = 15
Height = 14
Frame.Color = clBlack
Frame.DrawTop = False
Frame.DrawBottom = False
Frame.DrawLeft = False
Frame.DrawRight = False
Frame.Style = psClear
Size.Values = (
37.0416666666667
613.833333333333
555.625
39.6875)
Alignment = taLeftJustify
AlignToBand = False
AutoSize = True
AutoStretch = False
Caption = '년'
Color = clWhite
Font.Charset = HANGEUL_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = '바탕체'
Font.Style = []
ParentFont = False
Transparent = False
WordWrap = True
FontSize = 10
end
object qrlb_AdmDte2: TQRLabel
Left = 252
Top = 210
Width = 61
Height = 14
Frame.Color = clBlack
Frame.DrawTop = False
Frame.DrawBottom = False
Frame.DrawLeft = False
Frame.DrawRight = False
Frame.Style = psClear
Size.Values = (
37.0416666666667
666.75
555.625
161.395833333333)
Alignment = taCenter
AlignToBand = False
AutoSize = False
AutoStretch = False
Caption = 'qrlb_AdmDte2'
Color = clWhite
Font.Charset = HANGEUL_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = '신명조체'
Font.Style = []
ParentFont = False
Transparent = False
WordWrap = True
FontSize = 10
end
object QRShape6: TQRShape
Left = 252
Top = 221
Width = 71
Height = 6
Frame.Color = clBlack
Frame.DrawTop = False
Frame.DrawBottom = False
Frame.DrawLeft = False
Frame.DrawRight = False
Frame.Style = psClear
Size.Values = (
15.875
666.75
584.729166666667
187.854166666667)
Shape = qrsHorLine
end
object QRLabel20: TQRLabel
Left = 312
Top = 210
Width = 15
Height = 14
Frame.Color = clBlack
Frame.DrawTop = False
Frame.DrawBottom = False
Frame.DrawLeft = False
Frame.DrawRight = False
Frame.Style = psClear
Size.Values = (
37.0416666666667
825.5
555.625
39.6875)
Alignment = taLeftJustify
AlignToBand = False
AutoSize = True
AutoStretch = False
Caption = '월'
Color = clWhite
Font.Charset = HANGEUL_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = '바탕체'
Font.Style = []
ParentFont = False
Transparent = False
WordWrap = True
FontSize = 10
end
object qrlb_AdmDte3: TQRLabel
Left = 332
Top = 210
Width = 61
Height = 14
Frame.Color = clBlack
Frame.DrawTop = False
Frame.DrawBottom = False
Frame.DrawLeft = False
Frame.DrawRight = False
Frame.Style = psClear
Size.Values = (
37.0416666666667
878.416666666667
555.625
161.395833333333)
Alignment = taCenter
AlignToBand = False
AutoSize = False
AutoStretch = False
Caption = 'lbPtNo'
Color = clWhite
Font.Charset = HANGEUL_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = '신명조체'
Font.Style = []
ParentFont = False
Transparent = False
WordWrap = True
FontSize = 10
end
object QRLabel22: TQRLabel
Left = 392
Top = 210
Width = 15
Height = 14
Frame.Color = clBlack
Frame.DrawTop = False
Frame.DrawBottom = False
Frame.DrawLeft = False
Frame.DrawRight = False
Frame.Style = psClear
Size.Values = (
37.0416666666667
1037.16666666667
555.625
39.6875)
Alignment = taLeftJustify
AlignToBand = False
AutoSize = True
AutoStretch = False
Caption = '일'
Color = clWhite
Font.Charset = HANGEUL_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = '바탕체'
Font.Style = []
ParentFont = False
Transparent = False
WordWrap = True
FontSize = 10
end
object QRShape7: TQRShape
Left = 332
Top = 221
Width = 71
Height = 6
Frame.Color = clBlack
Frame.DrawTop = False
Frame.DrawBottom = False
Frame.DrawLeft = False
Frame.DrawRight = False
Frame.Style = psClear
Size.Values = (
15.875
878.416666666667
584.729166666667
187.854166666667)
Shape = qrsHorLine
end
object QRLabel24: TQRLabel
Left = 482
Top = 210
Width = 15
Height = 14
Frame.Color = clBlack
Frame.DrawTop = False
Frame.DrawBottom = False
Frame.DrawLeft = False
Frame.DrawRight = False
Frame.Style = psClear
Size.Values = (
37.0416666666667
1275.29166666667
555.625
39.6875)
Alignment = taLeftJustify
AlignToBand = False
AutoSize = True
AutoStretch = False
Caption = '시'
Color = clWhite
Font.Charset = HANGEUL_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = '바탕체'
Font.Style = []
ParentFont = False
Transparent = False
WordWrap = True
FontSize = 10
end
object QRShape8: TQRShape
Left = 412
Top = 221
Width = 81
Height = 6
Frame.Color = clBlack
Frame.DrawTop = False
Frame.DrawBottom = False
Frame.DrawLeft = False
Frame.DrawRight = False
Frame.Style = psClear
Size.Values = (
15.875
1090.08333333333
584.729166666667
214.3125)
Shape = qrsHorLine
end
object QRLabel26: TQRLabel
Left = 72
Top = 243
Width = 71
Height = 14
Frame.Color = clBlack
Frame.DrawTop = False
Frame.DrawBottom = False
Frame.DrawLeft = False
Frame.DrawRight = False
Frame.Style = psClear
Size.Values = (
37.0416666666667
190.5
642.9375
187.854166666667)
Alignment = taLeftJustify
AlignToBand = False
AutoSize = True
AutoStretch = False
Caption = '정보제공자'
Color = clWhite
Font.Charset = HANGEUL_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = '바탕체'
Font.Style = []
ParentFont = False
Transparent = False
WordWrap = True
FontSize = 10
end
object B0001_1: TQRLabel
Left = 165
Top = 242
Width = 116
Height = 14
Frame.Color = clBlack
Frame.DrawTop = False
Frame.DrawBottom = False
Frame.DrawLeft = False
Frame.DrawRight = False
Frame.Style = psClear
Size.Values = (
37.0416666666667
436.5625
640.291666666667
306.916666666667)
Alignment = taLeftJustify
AlignToBand = False
AutoSize = False
AutoStretch = False
Caption = 'lbPtNo'
Color = clWhite
Font.Charset = HANGEUL_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = '신명조체'
Font.Style = []
ParentFont = False
Transparent = False
WordWrap = True
FontSize = 10
end
object QRShape12: TQRShape
Left = 152
Top = 253
Width = 131
Height = 6
Frame.Color = clBlack
Frame.DrawTop = False
Frame.DrawBottom = False
Frame.DrawLeft = False
Frame.DrawRight = False
Frame.Style = psClear
Size.Values = (
15.875
402.166666666667
669.395833333333
346.604166666667)
Shape = qrsHorLine
end
object QRLabel27: TQRLabel
Left = 485
Top = 279
Width = 29
Height = 14
Frame.Color = clBlack
Frame.DrawTop = False
Frame.DrawBottom = False
Frame.DrawLeft = False
Frame.DrawRight = False
Frame.Style = psClear
Size.Values = (
37.0416666666667
1283.22916666667
738.1875
76.7291666666667)
Alignment = taLeftJustify
AlignToBand = False
AutoSize = True
AutoStretch = False
Caption = '직업'
Color = clWhite
Font.Charset = HANGEUL_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = '바탕체'
Font.Style = []
ParentFont = False
Transparent = False
WordWrap = True
FontSize = 10
end
object B0004_1: TQRLabel
Left = 519
Top = 279
Width = 87
Height = 14
Frame.Color = clBlack
Frame.DrawTop = False
Frame.DrawBottom = False
Frame.DrawLeft = False
Frame.DrawRight = False
Frame.Style = psClear
Size.Values = (
37.0416666666667
1373.1875
738.1875
230.1875)
Alignment = taLeftJustify
AlignToBand = False
AutoSize = False
AutoStretch = False
Caption = 'lbPtNo'
Color = clWhite
Font.Charset = HANGEUL_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = '신명조체'
Font.Style = []
ParentFont = False
Transparent = False
WordWrap = True
FontSize = 10
end
object QRShape11: TQRShape
Left = 515
Top = 290
Width = 93
Height = 6
Frame.Color = clBlack
Frame.DrawTop = False
Frame.DrawBottom = False
Frame.DrawLeft = False
Frame.DrawRight = False
Frame.Style = psClear
Size.Values = (
15.875
1362.60416666667
767.291666666667
246.0625)
Shape = qrsHorLine
end
object QRLabel34: TQRLabel
Left = 613
Top = 279
Width = 31
Height = 14
Frame.Color = clBlack
Frame.DrawTop = False
Frame.DrawBottom = False
Frame.DrawLeft = False
Frame.DrawRight = False
Frame.Style = psClear
Size.Values = (
37.0416666666667
1621.89583333333
738.1875
82.0208333333333)
Alignment = taLeftJustify
AlignToBand = False
AutoSize = False
AutoStretch = False
Caption = '종교'
Color = clWhite
Font.Charset = HANGEUL_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = '바탕체'
Font.Style = []
ParentFont = False
Transparent = False
WordWrap = True
FontSize = 10
end
object B0005_1: TQRLabel
Left = 649
Top = 279
Width = 94
Height = 14
Frame.Color = clBlack
Frame.DrawTop = False
Frame.DrawBottom = False
Frame.DrawLeft = False
Frame.DrawRight = False
Frame.Style = psClear
Size.Values = (
37.0416666666667
1717.14583333333
738.1875
248.708333333333)
Alignment = taLeftJustify
AlignToBand = False
AutoSize = False
AutoStretch = False
Caption = 'lbPtNo'
Color = clWhite
Font.Charset = HANGEUL_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = '신명조체'
Font.Style = []
ParentFont = False
Transparent = False
WordWrap = True
FontSize = 10
end
object QRShape15: TQRShape
Left = 647
Top = 290
Width = 99
Height = 6
Frame.Color = clBlack
Frame.DrawTop = False
Frame.DrawBottom = False
Frame.DrawLeft = False
Frame.DrawRight = False
Frame.Style = psClear
Size.Values = (
15.875
1711.85416666667
767.291666666667
261.9375)
Shape = qrsHorLine
end
object QRLabel36: TQRLabel
Left = 72
Top = 317
Width = 72
Height = 14
Frame.Color = clBlack
Frame.DrawTop = False
Frame.DrawBottom = False
Frame.DrawLeft = False
Frame.DrawRight = False
Frame.Style = psClear
Size.Values = (
37.0416666666667
190.5
838.729166666667
190.5)
Alignment = taLeftJustify
AlignToBand = False
AutoSize = False
AutoStretch = False
Caption = '전화번호-1'
Color = clWhite
Font.Charset = HANGEUL_CHARSET
Font.Color = clWindowText
Font.Height = -13