-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresunit2.lfm
executable file
·958 lines (958 loc) · 23.6 KB
/
resunit2.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
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
object ResForm2: TResForm2
Left = 586
Height = 836
Top = 97
Width = 530
Caption = 'ResForm2'
ClientHeight = 816
ClientWidth = 530
Menu = MainMenu
OnCreate = FormCreate
SessionProperties = 'Left;Top'
LCLVersion = '2.2.0.4'
object ToolBar: TToolBar
Left = 0
Height = 26
Top = 0
Width = 530
Caption = 'ToolBar'
Images = ImageList
TabOrder = 0
object tbSavePDF: TToolButton
Left = 1
Top = 2
Caption = 'tbSavePDF'
ImageIndex = 0
OnClick = miSavePDFClick
end
object ToolButton1: TToolButton
Left = 24
Height = 22
Top = 2
Caption = 'ToolButton1'
Style = tbsSeparator
end
object tbExit: TToolButton
Left = 32
Top = 2
Caption = 'tbExit'
ImageIndex = 1
OnClick = miExitClick
end
end
object ScrollBox: TScrollBox
Left = 0
Height = 790
Top = 26
Width = 530
HorzScrollBar.Page = 523
VertScrollBar.Page = 770
Align = alClient
AutoSize = True
ClientHeight = 786
ClientWidth = 526
TabOrder = 1
object pPage: TPanel
Left = 0
Height = 770
Top = 0
Width = 523
BevelOuter = bvNone
ClientHeight = 770
ClientWidth = 523
TabOrder = 0
object pHeader: TPanel
Left = 0
Height = 60
Top = 0
Width = 523
Align = alTop
BorderStyle = bsSingle
ClientHeight = 56
ClientWidth = 519
Color = clCream
ParentColor = False
TabOrder = 0
object lTitle: TLabel
Left = 0
Height = 18
Top = 29
Width = 538
Alignment = taCenter
AutoSize = False
Caption = 'Site name here'
end
object lVersion: TLabel
Left = 0
Height = 23
Top = 5
Width = 538
Alignment = taCenter
AutoSize = False
Caption = 'Opposing Fields v3.2'
Font.Height = -19
Font.Name = 'Arial'
ParentFont = False
end
end
object gbPatientP: TGroupBox
Left = 0
Height = 110
Top = 60
Width = 523
Align = alTop
Caption = 'Patient Particulars'
ClientHeight = 90
ClientWidth = 519
TabOrder = 1
object Label2: TLabel
Left = 20
Height = 13
Top = 0
Width = 32
Caption = 'Name:'
Font.Height = -11
ParentFont = False
end
object Label3: TLabel
Left = 20
Height = 13
Top = 15
Width = 62
Caption = 'DR Number:'
Font.Height = -11
ParentFont = False
end
object Label4: TLabel
Left = 20
Height = 13
Top = 30
Width = 69
Caption = 'Date of birth:'
Font.Height = -11
ParentFont = False
end
object Label5: TLabel
Left = 20
Height = 13
Top = 45
Width = 54
Caption = 'Diagnosis:'
Font.Height = -11
ParentFont = False
end
object Label6: TLabel
Left = 20
Height = 13
Top = 60
Width = 52
Caption = 'Comment:'
Font.Height = -11
ParentFont = False
end
object lName: TLabel
Left = 125
Height = 18
Top = 0
Width = 390
AutoSize = False
Caption = 'lName'
Font.Height = -11
ParentFont = False
end
object lDRNo: TLabel
Left = 125
Height = 18
Top = 15
Width = 390
AutoSize = False
Caption = 'lDRNo'
Font.Height = -11
ParentFont = False
end
object lBDate: TLabel
Left = 125
Height = 18
Top = 30
Width = 390
AutoSize = False
Caption = 'lBDate'
Font.Height = -11
ParentFont = False
end
object lDiagnosis: TLabel
Left = 125
Height = 18
Top = 45
Width = 390
AutoSize = False
Caption = 'lDiagnosis'
Font.Height = -11
ParentFont = False
end
object lComment: TLabel
Left = 125
Height = 18
Top = 60
Width = 390
AutoSize = False
Caption = 'lComment'
Font.Height = -11
ParentFont = False
end
end
object gbPrescription: TGroupBox
Left = 0
Height = 110
Top = 170
Width = 523
Align = alTop
Caption = 'Prescription'
ClientHeight = 90
ClientWidth = 519
TabOrder = 2
object Label7: TLabel
Left = 20
Height = 13
Top = 0
Width = 57
Caption = 'Total Dose:'
Font.Height = -11
ParentFont = False
end
object Label8: TLabel
Left = 20
Height = 13
Top = 15
Width = 92
Caption = 'Dose per fraction:'
Font.Height = -11
ParentFont = False
end
object Label9: TLabel
Left = 20
Height = 13
Top = 30
Width = 89
Caption = 'Prescription type:'
Font.Height = -11
ParentFont = False
end
object Label10: TLabel
Left = 20
Height = 13
Top = 45
Width = 33
Caption = 'Fields:'
Font.Height = -11
ParentFont = False
end
object Label11: TLabel
Left = 20
Height = 13
Top = 60
Width = 79
Caption = 'Treatment type:'
Font.Height = -11
ParentFont = False
end
object lTDose: TLabel
Left = 125
Height = 13
Top = 0
Width = 35
Caption = 'lTDose'
Font.Height = -11
ParentFont = False
end
object lDPF: TLabel
Left = 125
Height = 13
Top = 15
Width = 23
Caption = 'lDPF'
Font.Height = -11
ParentFont = False
end
object lPType: TLabel
Left = 125
Height = 13
Top = 30
Width = 32
Caption = 'lPType'
Font.Height = -11
ParentFont = False
end
object lFType: TLabel
Left = 125
Height = 13
Top = 45
Width = 32
Caption = 'lFType'
Font.Height = -11
ParentFont = False
end
object lTType: TLabel
Left = 125
Height = 13
Top = 60
Width = 32
Caption = 'lTType'
Font.Height = -11
ParentFont = False
end
end
object gbTreatment: TGroupBox
Left = 0
Height = 228
Top = 280
Width = 523
Align = alTop
Caption = 'Treatment Details'
ClientHeight = 208
ClientWidth = 519
TabOrder = 3
object lTULabel: TLabel
Left = 20
Height = 13
Top = 0
Width = 79
Caption = 'Treatment Unit:'
Font.Height = -11
ParentFont = False
end
object lEnergyLabel: TLabel
Left = 20
Height = 13
Top = 15
Width = 38
Caption = 'Energy:'
Font.Height = -11
ParentFont = False
end
object lAPLATLabel: TLabel
Left = 20
Height = 13
Top = 30
Width = 68
Caption = 'Presentation:'
Font.Height = -11
ParentFont = False
end
object lXYLabel: TLabel
Left = 20
Height = 13
Top = 45
Width = 50
Caption = 'Field size:'
Font.Height = -11
ParentFont = False
end
object lEQSLabel: TLabel
Left = 20
Height = 13
Top = 60
Width = 92
Caption = 'Equivalent square'
Font.Height = -11
ParentFont = False
end
object lDiamLabel: TLabel
Left = 20
Height = 13
Top = 75
Width = 87
Caption = 'Patient diameter:'
Font.Height = -11
ParentFont = False
end
object lDepthLabel: TLabel
Left = 20
Height = 13
Top = 90
Width = 88
Caption = 'Treatment depth:'
Font.Height = -11
ParentFont = False
end
object lSSDLabel: TLabel
Left = 20
Height = 13
Top = 105
Width = 100
Caption = 'Treatment distance:'
Font.Height = -11
ParentFont = False
end
object lTMRLabel: TLabel
Left = 20
Height = 13
Top = 120
Width = 73
Caption = 'TMR at depth:'
Font.Height = -11
ParentFont = False
end
object lOPFLabel: TLabel
Left = 20
Height = 13
Top = 135
Width = 74
Caption = 'Output factor:'
Font.Height = -11
ParentFont = False
end
object lNormLabel: TLabel
Left = 20
Height = 13
Top = 150
Width = 75
Caption = 'Normalisation:'
Font.Height = -11
ParentFont = False
end
object lTableLabel: TLabel
Left = 20
Height = 13
Top = 165
Width = 63
Caption = 'Table factor:'
Font.Height = -11
ParentFont = False
end
object lWedgeLabel: TLabel
Left = 20
Height = 13
Top = 180
Width = 73
Caption = 'Wedge factor:'
Font.Height = -11
ParentFont = False
end
object lMachine: TLabel
Left = 125
Height = 13
Top = 0
Width = 47
Caption = 'lMachine'
Font.Height = -11
ParentFont = False
end
object lEnergy: TLabel
Left = 125
Height = 13
Top = 15
Width = 38
Caption = 'lEnergy'
Font.Height = -11
ParentFont = False
end
object lAPLAT: TLabel
Left = 125
Height = 13
Top = 30
Width = 33
Caption = 'lAPLAT'
Font.Height = -11
ParentFont = False
end
object lXY: TLabel
Left = 125
Height = 13
Top = 45
Width = 14
Caption = 'lXY'
Font.Height = -11
ParentFont = False
end
object lEQS: TLabel
Left = 125
Height = 13
Top = 60
Width = 23
Caption = 'lEQS'
Font.Height = -11
ParentFont = False
end
object lDiam: TLabel
Left = 125
Height = 13
Top = 75
Width = 29
Caption = 'lDiam'
Font.Height = -11
ParentFont = False
end
object lDepth: TLabel
Left = 125
Height = 13
Top = 90
Width = 35
Caption = 'lDepth'
Font.Height = -11
ParentFont = False
end
object lSSD: TLabel
Left = 125
Height = 13
Top = 105
Width = 23
Caption = 'lSSD'
Font.Height = -11
ParentFont = False
end
object lTMR: TLabel
Left = 125
Height = 13
Top = 120
Width = 26
Caption = 'lTMR'
Font.Height = -11
ParentFont = False
end
object lOPF: TLabel
Left = 125
Height = 13
Top = 135
Width = 24
Caption = 'lOPF'
Font.Height = -11
ParentFont = False
end
object lNorm: TLabel
Left = 125
Height = 13
Top = 150
Width = 31
Caption = 'lNorm'
Font.Height = -11
ParentFont = False
end
object lTable: TLabel
Left = 125
Height = 13
Top = 165
Width = 30
Caption = 'lTable'
Font.Height = -11
ParentFont = False
end
object lWedge: TLabel
Left = 125
Height = 13
Top = 180
Width = 40
Caption = 'lWedge'
Font.Height = -11
ParentFont = False
end
end
object gbResults: TGroupBox
Left = 0
Height = 194
Top = 508
Width = 523
Align = alTop
Caption = 'Results'
ClientHeight = 174
ClientWidth = 519
TabOrder = 4
object Label12: TLabel
Left = 20
Height = 13
Top = 0
Width = 103
Caption = '% approx skin dose:'
Font.Height = -11
ParentFont = False
end
object Label13: TLabel
Left = 20
Height = 13
Top = 15
Width = 81
Caption = '% tumour dose:'
Font.Height = -11
ParentFont = False
end
object Label14: TLabel
Left = 20
Height = 13
Top = 30
Width = 91
Caption = '% maximum dose:'
Font.Height = -11
ParentFont = False
end
object Label15: TLabel
Left = 0
Height = 17
Top = 50
Width = 22
Caption = 'Day'
Font.Height = -13
ParentFont = False
end
object Label16: TLabel
Left = 51
Height = 17
Top = 50
Width = 27
Caption = 'Field'
Font.Height = -13
ParentFont = False
end
object Label17: TLabel
Left = 107
Height = 17
Top = 50
Width = 80
Caption = 'Monitor Units'
Font.Height = -13
ParentFont = False
end
object lDose1: TLabel
Left = 219
Height = 17
Top = 50
Width = 79
Caption = 'Tumour Dose'
Font.Height = -13
ParentFont = False
end
object lDose2: TLabel
Left = 329
Height = 17
Top = 50
Width = 59
Caption = 'Max Dose'
Font.Height = -13
ParentFont = False
end
object Label20: TLabel
Left = 417
Height = 17
Top = 50
Width = 92
Caption = 'Reference Dose'
Font.Height = -13
ParentFont = False
end
object lDay1: TLabel
Left = 0
Height = 17
Top = 70
Width = 32
Caption = 'lDay1'
Font.Height = -13
ParentFont = False
end
object lField1: TLabel
Left = 51
Height = 17
Top = 70
Width = 37
Caption = 'lField1'
Font.Height = -13
ParentFont = False
end
object lMU1: TLabel
Left = 107
Height = 17
Top = 70
Width = 31
Caption = 'lMU1'
Font.Height = -13
ParentFont = False
end
object lTD1: TLabel
Left = 219
Height = 17
Top = 70
Width = 26
Caption = 'lTD1'
Font.Height = -13
ParentFont = False
end
object lMaxD1: TLabel
Left = 329
Height = 17
Top = 70
Width = 44
Caption = 'lMaxD1'
Font.Height = -13
ParentFont = False
end
object lRD1: TLabel
Left = 417
Height = 17
Top = 70
Width = 27
Caption = 'lRD1'
Font.Height = -13
ParentFont = False
end
object lDay2: TLabel
Left = -1
Height = 17
Top = 90
Width = 32
Caption = 'lDay2'
Font.Height = -13
ParentFont = False
end
object lField2: TLabel
Left = 51
Height = 17
Top = 90
Width = 37
Caption = 'lField2'
Font.Height = -13
ParentFont = False
end
object lMU2: TLabel
Left = 107
Height = 17
Top = 90
Width = 31
Caption = 'lMU2'
Font.Height = -13
ParentFont = False
end
object lTD2: TLabel
Left = 219
Height = 17
Top = 90
Width = 26
Caption = 'lTD2'
Font.Height = -13
ParentFont = False
end
object lMaxD2: TLabel
Left = 329
Height = 17
Top = 90
Width = 44
Caption = 'lMaxD2'
Font.Height = -13
ParentFont = False
end
object lRD2: TLabel
Left = 417
Height = 17
Top = 90
Width = 27
Caption = 'lRD2'
Font.Height = -13
ParentFont = False
end
object lPASD: TLabel
Left = 125
Height = 13
Top = 0
Width = 29
Caption = 'lPASD'
Font.Height = -11
ParentFont = False
end
object lPTD: TLabel
Left = 125
Height = 13
Top = 15
Width = 23
Caption = 'lPTD'
Font.Height = -11
ParentFont = False
end
object lPMD: TLabel
Left = 125
Height = 13
Top = 30
Width = 27
Caption = 'lPMD'
Font.Height = -11
ParentFont = False
end
object lIso: TLabel
Left = 0
Height = 13
Top = 125
Width = 164
Caption = 'Total dose at maximum buildup:'
Font.Height = -11
ParentFont = False
end
object Label22: TLabel
Left = 0
Height = 13
Top = 140
Width = 180
Caption = 'Total approximate dose at the skin:'
Font.Height = -11
ParentFont = False
end
object lMD: TLabel
Left = 189
Height = 13
Top = 125
Width = 21
Caption = 'lMD'
Font.Height = -11
ParentFont = False
end
object lTSD: TLabel
Left = 189
Height = 13
Top = 140
Width = 23
Caption = 'lTSD'
Font.Height = -11
ParentFont = False
end
object Shape1: TShape
Left = 0
Height = 1
Top = 70
Width = 519
end
object Shape2: TShape
Left = 0
Height = 1
Top = 110
Width = 519
end
end
object pFooter: TPanel
Left = 0
Height = 68
Top = 702
Width = 523
Align = alClient
ClientHeight = 68
ClientWidth = 523
TabOrder = 5
object lUser: TLabel
Left = 0
Height = 17
Top = 10
Width = 225
Caption = 'Calculated by: ____________________________'
Font.Height = -13
ParentFont = False
end
object Label23: TLabel
Left = 260
Height = 17
Top = 10
Width = 231
Caption = 'Controlled by: _____________________________'
Font.Height = -13
ParentFont = False
end
object lDate: TLabel
Left = 0
Height = 17
Top = 30
Width = 30
Caption = 'Date:'
Font.Height = -13
ParentFont = False
end
object lTime: TLabel
Left = 260
Height = 17
Top = 30
Width = 31
Caption = 'Time:'
Font.Height = -13
ParentFont = False
end
object lFileName: TLabel
Left = 0
Height = 16
Top = 47
Width = 304
AutoSize = False
Font.Height = -11
ParentFont = False
end
object Label27: TLabel
Left = 314
Height = 13
Top = 47
Width = 197
Caption = '(c) Yenzakahle Medical Physics Inc 2024'
Font.Height = -11
ParentFont = False
end
end
end
end
object MainMenu: TMainMenu
Left = 448
Top = 48
object miSavePDF: TMenuItem
Caption = '&Save PDF'
OnClick = miSavePDFClick
end
object miExit: TMenuItem
Caption = 'E&xit'
OnClick = miExitClick
end
end
object ImageList: TImageList
Left = 448
Top = 104
Bitmap = {
4C7A0200000010000000100000007C0400000000000078DAA5D35B4C53771CC0
71F7BE654B963D2C31EEC1111743746ECCCB18687158E5B28A23A332C6AA20CA
2222978A40292838284D2945505AEE376F28882014913181818A176ED1881428
A57809CC873DE80BF9EE9CF3D0CCE88C6C4DBE394D4E3EE7F73BFFB4C0928585
85654EA793CECE4EBABABAFE35F1BEB5AD93F9B9671B80778496CC3A17964D4E
3C5F5F53DD414AB28993450DAFCD62BE802EC7C0AA9539444556E0987EBA5E9C
FBE9D279DE261FCFA718F4ED7CFD55354B3FBAC29E8802EC76078BF1270BBB09
0D3986CC3B17B7E50ADADADAF1707FC697EE7FB27AC55356AD78C29A9573AEDC
DDE658B97C9ECF3F9B2350FE046BEB1413B671294D6A2A1D1D1D14999ED7990C
7F5D8C8F192126FA2E99E933AEA22367090B794CB2DA49419E839B37265EF1E2
19BE78F162D955E17BF3A54BAEFB620DF576E1F90E06FEE116E34FD7DAC9CBFD
7F3E277386BEDEC5FB876336CACCD344A91E71FEAC9DF187B645F9DEEE498C7A
07FA6C07BAAC199A2F4E31F6C0F6565E9C7DB6CE4EEEAF3354954D7328CEC9BE
885954A18F89D9374BB6F04EF1719AD7FA71C15A2F4FA14D76526874F05BC724
7FF44CD2295CCF08CFCCCA98215CF988C8DD69AFF853B5CD1C17CCFEBDB31417
4D333C687B696771AFE1211BFD7D13241D7A797FABF52A47D35BD9EEF784F454
27F7EFD95E39F3379DDFF9FA06B6CA5504FA1FE660AC1A7562E21B93C96458AD
5696FC874F4CE928BF5886893A797751FE60F93D447BAC698C50533BAAE3032E
9F91918156AB45A3D1909292425252126AB59AF8F878E2CA4789156CF6A571EA
471E7376701665BE959D797D2E9F969686D96C96B2582C5225252552B165239C
1B7A44BD5071BF1D53F7043F18DBD8A1BBE6F2E24CD1EE30EDC46C314BAEB4B4
546ABF6590D3779C18AF4DA2EB1C472FF4BDA115FFACAB2E2FEE2BCEF4CAF565
5BAE42726565655251276E513DE0906C66FB18594241FACB6CD6B6F26D61203E
267F361AB6E2A5F3E5A7DA3D8456EEC237D39FF2F2722955C10DCAFBA7C9B48E
91D6721F6DF37D14BA163C939B90E5FB51385C8169D082E1F609740305645D37
1054AC44A6D942454505A179BD14F74CA1115C62E33DC27BE7F1CF69C623A11E
6FFD168C77CCA4F56573B8E70809BF6B48144AEE3EC2B67C05C1E92104EBBA28
ECB2A1BE304A84D58EFF28F8E8ADB81F388567B68F6B66465F0EA93D99245D4B
476E0CC433712355555504645DC1D0F190036786883A35C4CF2D93C88F35E116
5DC5BAA3DE78683D5993BC8E556A0FB699B6B3C518C086042FC9565757E3AB6D
21A7ED017B6BEEB2ABFC161115B784F369E293C852D7F9AB542A2A2B2BF13A24
636DDC06C989D5D4D4E0957C91A3C2BBEF165CA8E506E12537D97CA4918F55C5
2E1F161626CDFB26611395C2557462B5B5B5AC4D3C475AE3283F0A36B8A81FE5
89EBC8321AF830ACD0E5954AE54B334527565757C7EAD83A0ED70F0B8D90707A
88E8CADB6C4A6FE0FD9D26E9371717174770703041414128140A020202F0F3F3
432E97E3EBEB8BDBDE32BE483C8397A61179D665BECBBD82B7F602EF861817FD
FFFD20B480F794F9C2EE0592FF1B12860F24
}
end
object SaveDialog: TSaveDialog
DefaultExt = '.pdf'
Filter = 'PDF|*.pdf|All files|*'
Options = [ofOverwritePrompt, ofEnableSizing, ofViewDetail]
Left = 448
Top = 160
end
object XMLPropStorage: TXMLPropStorage
StoredValues = <>
Left = 443
Top = 240
end
end