You've already forked lazarus-ccr
PowerPDF Check In
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@585 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@ -0,0 +1,117 @@
|
||||
<?xml version="1.0"?>
|
||||
<CONFIG>
|
||||
<ProjectOptions>
|
||||
<PathDelim Value="\"/>
|
||||
<Version Value="6"/>
|
||||
<General>
|
||||
<Flags>
|
||||
<MainUnitHasUsesSectionForAllUnits Value="False"/>
|
||||
<MainUnitHasCreateFormStatements Value="False"/>
|
||||
<MainUnitHasTitleStatement Value="False"/>
|
||||
</Flags>
|
||||
<MainUnit Value="0"/>
|
||||
<IconPath Value="./"/>
|
||||
<TargetFileExt Value=".exe"/>
|
||||
<ActiveEditorIndexAtStart Value="0"/>
|
||||
</General>
|
||||
<PublishOptions>
|
||||
<Version Value="2"/>
|
||||
<IgnoreBinaries Value="False"/>
|
||||
<IncludeFileFilter Value="*.(pas|pp|inc|lfm|lpr|lrs|lpi|lpk|sh|xml)"/>
|
||||
<ExcludeFileFilter Value="*.(bak|ppu|ppw|o|so);*~;backup"/>
|
||||
</PublishOptions>
|
||||
<RunParams>
|
||||
<local>
|
||||
<FormatVersion Value="1"/>
|
||||
<LaunchingApplication PathPlusParams="/usr/X11R6/bin/xterm -T 'Lazarus Run Output' -e $(LazarusDir)/tools/runwait.sh $(TargetCmdLine)"/>
|
||||
</local>
|
||||
</RunParams>
|
||||
<RequiredPackages Count="2">
|
||||
<Item1>
|
||||
<PackageName Value="pack_powerpdf"/>
|
||||
</Item1>
|
||||
<Item2>
|
||||
<PackageName Value="LCL"/>
|
||||
</Item2>
|
||||
</RequiredPackages>
|
||||
<Units Count="5">
|
||||
<Unit0>
|
||||
<Filename Value="PageLayoutMode.lpr"/>
|
||||
<IsPartOfProject Value="True"/>
|
||||
<CursorPos X="2" Y="10"/>
|
||||
<TopLine Value="1"/>
|
||||
<EditorIndex Value="0"/>
|
||||
<UsageCount Value="20"/>
|
||||
<Loaded Value="True"/>
|
||||
</Unit0>
|
||||
<Unit1>
|
||||
<Filename Value="Unit1.pas"/>
|
||||
<ComponentName Value="Form1"/>
|
||||
<HasResources Value="True"/>
|
||||
<IsPartOfProject Value="True"/>
|
||||
<ResourceBaseClass Value="Form"/>
|
||||
<ResourceFilename Value="unit1.lrs"/>
|
||||
<UnitName Value="Unit1"/>
|
||||
<CursorPos X="27" Y="86"/>
|
||||
<TopLine Value="1"/>
|
||||
<EditorIndex Value="1"/>
|
||||
<UsageCount Value="20"/>
|
||||
<Loaded Value="True"/>
|
||||
</Unit1>
|
||||
<Unit2>
|
||||
<Filename Value="C:\Work\FreePascal\Lazarus\PowerPdf\PReport.pas"/>
|
||||
<UnitName Value="PReport"/>
|
||||
<CursorPos X="3" Y="759"/>
|
||||
<TopLine Value="740"/>
|
||||
<UsageCount Value="10"/>
|
||||
</Unit2>
|
||||
<Unit3>
|
||||
<Filename Value="C:\Work\FreePascal\Lazarus\PowerPdf\PdfDoc.pas"/>
|
||||
<UnitName Value="PdfDoc"/>
|
||||
<CursorPos X="38" Y="297"/>
|
||||
<TopLine Value="284"/>
|
||||
<UsageCount Value="10"/>
|
||||
</Unit3>
|
||||
<Unit4>
|
||||
<Filename Value="unit1.lfm"/>
|
||||
<CursorPos X="21" Y="8"/>
|
||||
<TopLine Value="1"/>
|
||||
<UsageCount Value="10"/>
|
||||
<SyntaxHighlighter Value="LFM"/>
|
||||
</Unit4>
|
||||
</Units>
|
||||
<JumpHistory Count="1" HistoryIndex="0">
|
||||
<Position1>
|
||||
<Filename Value="PageLayoutMode.lpr"/>
|
||||
<Caret Line="6" Column="14" TopLine="1"/>
|
||||
</Position1>
|
||||
</JumpHistory>
|
||||
</ProjectOptions>
|
||||
<CompilerOptions>
|
||||
<Version Value="8"/>
|
||||
<PathDelim Value="\"/>
|
||||
<SearchPaths>
|
||||
<SrcPath Value="$(LazarusDir)\lcl\;$(LazarusDir)\lcl\interfaces\$(LCLWidgetType)\"/>
|
||||
</SearchPaths>
|
||||
<Linking>
|
||||
<Options>
|
||||
<Win32>
|
||||
<GraphicApplication Value="True"/>
|
||||
</Win32>
|
||||
</Options>
|
||||
</Linking>
|
||||
<Other>
|
||||
<CompilerPath Value="$(CompPath)"/>
|
||||
</Other>
|
||||
</CompilerOptions>
|
||||
<Debugging>
|
||||
<Exceptions Count="2">
|
||||
<Item1>
|
||||
<Name Value="ECodetoolError"/>
|
||||
</Item1>
|
||||
<Item2>
|
||||
<Name Value="EFOpenError"/>
|
||||
</Item2>
|
||||
</Exceptions>
|
||||
</Debugging>
|
||||
</CONFIG>
|
@ -0,0 +1,16 @@
|
||||
program PageLayoutMode;
|
||||
|
||||
{.$MODE Delphi}
|
||||
|
||||
uses
|
||||
Interfaces,
|
||||
Forms,
|
||||
Unit1 in 'Unit1.pas' {Form1};
|
||||
|
||||
{$R *.RES}
|
||||
|
||||
begin
|
||||
Application.Initialize;
|
||||
Application.CreateForm(TForm1, Form1);
|
||||
Application.Run;
|
||||
end.
|
Binary file not shown.
@ -0,0 +1,107 @@
|
||||
unit Unit1;
|
||||
|
||||
{$MODE Delphi}
|
||||
|
||||
interface
|
||||
|
||||
uses
|
||||
LCLIntf, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
|
||||
StdCtrls, ExtCtrls, PdfDoc, PReport, {ShellAPI,} LResources, Buttons;
|
||||
|
||||
type
|
||||
TForm1 = class(TForm)
|
||||
PRPage1: TPRPage;
|
||||
PRLayoutPanel1: TPRLayoutPanel;
|
||||
PRLabel1: TPRLabel;
|
||||
PRLabel2: TPRLabel;
|
||||
PRLabel3: TPRLabel;
|
||||
PRLabel4: TPRLabel;
|
||||
PRLabel5: TPRLabel;
|
||||
PRLabel6: TPRLabel;
|
||||
PRLabel7: TPRLabel;
|
||||
PRLabel8: TPRLabel;
|
||||
PRLabel9: TPRLabel;
|
||||
PRLabel10: TPRLabel;
|
||||
PRLabel11: TPRLabel;
|
||||
PRLabel12: TPRLabel;
|
||||
PRLabel13: TPRLabel;
|
||||
PRLabel14: TPRLabel;
|
||||
PRLabel15: TPRLabel;
|
||||
PRLabel16: TPRLabel;
|
||||
PRLabel17: TPRLabel;
|
||||
PRLabel18: TPRLabel;
|
||||
PRLabel19: TPRLabel;
|
||||
PRLabel20: TPRLabel;
|
||||
PRLabel21: TPRLabel;
|
||||
PRLabel22: TPRLabel;
|
||||
PRLabel23: TPRLabel;
|
||||
PRLabel24: TPRLabel;
|
||||
PRLabel25: TPRLabel;
|
||||
PRLabel26: TPRLabel;
|
||||
PRLabel27: TPRLabel;
|
||||
Button1: TButton;
|
||||
PReport1: TPReport;
|
||||
RadioGroup1: TRadioGroup;
|
||||
RadioGroup2: TRadioGroup;
|
||||
PRPage2: TPRPage;
|
||||
PRLayoutPanel2: TPRLayoutPanel;
|
||||
PRLabel28: TPRLabel;
|
||||
PRLabel29: TPRLabel;
|
||||
PRLabel30: TPRLabel;
|
||||
PRLabel31: TPRLabel;
|
||||
PRLabel32: TPRLabel;
|
||||
PRLabel33: TPRLabel;
|
||||
PRLabel34: TPRLabel;
|
||||
PRLabel35: TPRLabel;
|
||||
PRLabel36: TPRLabel;
|
||||
PRLabel37: TPRLabel;
|
||||
PRLabel38: TPRLabel;
|
||||
PRLabel39: TPRLabel;
|
||||
PRLabel40: TPRLabel;
|
||||
PRLabel41: TPRLabel;
|
||||
PRLabel42: TPRLabel;
|
||||
PRLabel43: TPRLabel;
|
||||
PRLabel44: TPRLabel;
|
||||
PRLabel45: TPRLabel;
|
||||
PRLabel46: TPRLabel;
|
||||
PRLabel47: TPRLabel;
|
||||
PRLabel48: TPRLabel;
|
||||
PRLabel49: TPRLabel;
|
||||
PRLabel50: TPRLabel;
|
||||
PRLabel51: TPRLabel;
|
||||
PRLabel52: TPRLabel;
|
||||
PRLabel53: TPRLabel;
|
||||
PRLabel54: TPRLabel;
|
||||
procedure Button1Click(Sender: TObject);
|
||||
private
|
||||
{ Private �錾 }
|
||||
public
|
||||
{ Public �錾 }
|
||||
end;
|
||||
|
||||
var
|
||||
Form1: TForm1;
|
||||
|
||||
implementation
|
||||
|
||||
|
||||
procedure TForm1.Button1Click(Sender: TObject);
|
||||
begin
|
||||
with PReport1 do
|
||||
begin
|
||||
BeginDoc;
|
||||
PReport1.PageLayout := TPRPageLayout(RadioGroup1.ItemIndex);
|
||||
PReport1.PageMode := TPRPageMode(RadioGroup2.ItemIndex);
|
||||
Print(PRPage1);
|
||||
Print(PRPage2);
|
||||
Print(PRPage1);
|
||||
Print(PRPage2);
|
||||
EndDoc;
|
||||
end;
|
||||
//ShellExecute(Self.Handle, 'Open', 'default.pdf', '', '', SW_SHOW);
|
||||
end;
|
||||
|
||||
initialization
|
||||
{$i Unit1.lrs}
|
||||
|
||||
end.
|
@ -0,0 +1,630 @@
|
||||
object Form1: TForm1
|
||||
Caption = 'Form1'
|
||||
ClientHeight = 188
|
||||
ClientWidth = 299
|
||||
Font.CharSet = ANSI_CHARSET
|
||||
Font.Height = -12
|
||||
Font.Name = 'Arial'
|
||||
PixelsPerInch = 96
|
||||
HorzScrollBar.Page = 298
|
||||
VertScrollBar.Page = 187
|
||||
Left = 200
|
||||
Height = 188
|
||||
Top = 107
|
||||
Width = 299
|
||||
object PRPage1: TPRPage
|
||||
MarginTop = 20
|
||||
MarginLeft = 5
|
||||
MarginRight = 5
|
||||
MarginBottom = 20
|
||||
Visible = False
|
||||
Left = 12
|
||||
Height = 600
|
||||
Top = 157
|
||||
Width = 600
|
||||
object PRLayoutPanel1: TPRLayoutPanel
|
||||
Align = alClient
|
||||
Left = 6
|
||||
Height = 558
|
||||
Top = 21
|
||||
Width = 588
|
||||
object PRLabel1: TPRLabel
|
||||
Caption = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
|
||||
FontName = fnArial
|
||||
FontSize = 30
|
||||
CharSpace = 1
|
||||
Left = 22
|
||||
Height = 30
|
||||
Width = 557
|
||||
end
|
||||
object PRLabel2: TPRLabel
|
||||
Caption = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
|
||||
FontColor = 2228224
|
||||
FontName = fnArial
|
||||
FontSize = 30
|
||||
CharSpace = 1
|
||||
Left = 23
|
||||
Height = 30
|
||||
Top = 48
|
||||
Width = 557
|
||||
end
|
||||
object PRLabel3: TPRLabel
|
||||
Caption = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
|
||||
FontColor = 3342336
|
||||
FontName = fnArial
|
||||
FontSize = 30
|
||||
CharSpace = 1
|
||||
Left = 23
|
||||
Height = 30
|
||||
Top = 96
|
||||
Width = 557
|
||||
end
|
||||
object PRLabel4: TPRLabel
|
||||
Caption = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
|
||||
FontColor = 4456448
|
||||
FontName = fnArial
|
||||
FontSize = 30
|
||||
CharSpace = 1
|
||||
Left = 23
|
||||
Height = 30
|
||||
Top = 144
|
||||
Width = 557
|
||||
end
|
||||
object PRLabel5: TPRLabel
|
||||
Caption = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
|
||||
FontColor = 5570560
|
||||
FontName = fnArial
|
||||
FontSize = 30
|
||||
CharSpace = 1
|
||||
Left = 23
|
||||
Height = 30
|
||||
Top = 192
|
||||
Width = 557
|
||||
end
|
||||
object PRLabel6: TPRLabel
|
||||
Caption = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
|
||||
FontColor = 6684672
|
||||
FontName = fnArial
|
||||
FontSize = 30
|
||||
CharSpace = 1
|
||||
Left = 23
|
||||
Height = 30
|
||||
Top = 240
|
||||
Width = 557
|
||||
end
|
||||
object PRLabel7: TPRLabel
|
||||
Caption = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
|
||||
FontColor = 7798784
|
||||
FontName = fnArial
|
||||
FontSize = 30
|
||||
CharSpace = 1
|
||||
Left = 23
|
||||
Height = 30
|
||||
Top = 288
|
||||
Width = 557
|
||||
end
|
||||
object PRLabel8: TPRLabel
|
||||
Caption = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
|
||||
FontColor = 8912896
|
||||
FontName = fnArial
|
||||
FontSize = 30
|
||||
CharSpace = 1
|
||||
Left = 23
|
||||
Height = 30
|
||||
Top = 336
|
||||
Width = 557
|
||||
end
|
||||
object PRLabel9: TPRLabel
|
||||
Caption = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
|
||||
FontColor = 10027008
|
||||
FontName = fnArial
|
||||
FontSize = 30
|
||||
CharSpace = 1
|
||||
Left = 23
|
||||
Height = 30
|
||||
Top = 384
|
||||
Width = 557
|
||||
end
|
||||
object PRLabel10: TPRLabel
|
||||
Caption = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
|
||||
FontColor = 11141120
|
||||
FontName = fnArial
|
||||
FontSize = 30
|
||||
CharSpace = 1
|
||||
Left = 23
|
||||
Height = 30
|
||||
Top = 432
|
||||
Width = 557
|
||||
end
|
||||
object PRLabel11: TPRLabel
|
||||
Caption = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
|
||||
FontColor = 13369344
|
||||
FontName = fnArial
|
||||
FontSize = 30
|
||||
CharSpace = 1
|
||||
Left = 23
|
||||
Height = 30
|
||||
Top = 480
|
||||
Width = 557
|
||||
end
|
||||
object PRLabel12: TPRLabel
|
||||
Caption = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
|
||||
FontColor = clBlue
|
||||
FontName = fnArial
|
||||
FontSize = 30
|
||||
CharSpace = 1
|
||||
Left = 25
|
||||
Height = 30
|
||||
Top = 528
|
||||
Width = 557
|
||||
end
|
||||
object PRLabel13: TPRLabel
|
||||
Caption = '1'
|
||||
FontName = fnArial
|
||||
FontSize = 8
|
||||
Left = 6
|
||||
Height = 30
|
||||
Top = 12
|
||||
Width = 13
|
||||
end
|
||||
object PRLabel14: TPRLabel
|
||||
Caption = '2'
|
||||
FontName = fnArial
|
||||
FontSize = 8
|
||||
Left = 6
|
||||
Height = 30
|
||||
Top = 50
|
||||
Width = 13
|
||||
end
|
||||
object PRLabel15: TPRLabel
|
||||
Caption = '3'
|
||||
FontName = fnArial
|
||||
FontSize = 8
|
||||
Left = 6
|
||||
Height = 30
|
||||
Top = 88
|
||||
Width = 13
|
||||
end
|
||||
object PRLabel16: TPRLabel
|
||||
Caption = '4'
|
||||
FontName = fnArial
|
||||
FontSize = 8
|
||||
Left = 6
|
||||
Height = 30
|
||||
Top = 126
|
||||
Width = 13
|
||||
end
|
||||
object PRLabel17: TPRLabel
|
||||
Caption = '5'
|
||||
FontName = fnArial
|
||||
FontSize = 8
|
||||
Left = 6
|
||||
Height = 30
|
||||
Top = 163
|
||||
Width = 13
|
||||
end
|
||||
object PRLabel18: TPRLabel
|
||||
Caption = '6'
|
||||
FontName = fnArial
|
||||
FontSize = 8
|
||||
Left = 4
|
||||
Height = 33
|
||||
Top = 201
|
||||
Width = 13
|
||||
end
|
||||
object PRLabel19: TPRLabel
|
||||
Caption = '7'
|
||||
FontName = fnArial
|
||||
FontSize = 8
|
||||
Left = 4
|
||||
Height = 33
|
||||
Top = 239
|
||||
Width = 13
|
||||
end
|
||||
object PRLabel20: TPRLabel
|
||||
Caption = '8'
|
||||
FontName = fnArial
|
||||
FontSize = 8
|
||||
Left = 4
|
||||
Height = 33
|
||||
Top = 277
|
||||
Width = 13
|
||||
end
|
||||
object PRLabel21: TPRLabel
|
||||
Caption = '9'
|
||||
FontName = fnArial
|
||||
FontSize = 8
|
||||
Left = 4
|
||||
Height = 33
|
||||
Top = 315
|
||||
Width = 13
|
||||
end
|
||||
object PRLabel22: TPRLabel
|
||||
Caption = '10'
|
||||
FontName = fnArial
|
||||
FontSize = 8
|
||||
Left = 2
|
||||
Height = 33
|
||||
Top = 353
|
||||
Width = 15
|
||||
end
|
||||
object PRLabel23: TPRLabel
|
||||
Caption = '11'
|
||||
FontName = fnArial
|
||||
FontSize = 8
|
||||
Left = 2
|
||||
Height = 33
|
||||
Top = 391
|
||||
Width = 15
|
||||
end
|
||||
object PRLabel24: TPRLabel
|
||||
Caption = '12'
|
||||
FontName = fnArial
|
||||
FontSize = 8
|
||||
Left = 2
|
||||
Height = 33
|
||||
Top = 428
|
||||
Width = 15
|
||||
end
|
||||
object PRLabel25: TPRLabel
|
||||
Caption = '13'
|
||||
FontName = fnArial
|
||||
FontSize = 8
|
||||
Left = 2
|
||||
Height = 33
|
||||
Top = 466
|
||||
Width = 15
|
||||
end
|
||||
object PRLabel26: TPRLabel
|
||||
Caption = '14'
|
||||
FontName = fnArial
|
||||
FontSize = 8
|
||||
Left = 2
|
||||
Height = 33
|
||||
Top = 504
|
||||
Width = 15
|
||||
end
|
||||
object PRLabel27: TPRLabel
|
||||
Caption = '15'
|
||||
FontName = fnArial
|
||||
FontSize = 8
|
||||
Left = 2
|
||||
Height = 17
|
||||
Top = 542
|
||||
Width = 15
|
||||
end
|
||||
end
|
||||
end
|
||||
object Button1: TButton
|
||||
BorderSpacing.OnChange = nil
|
||||
Caption = 'CreatePdf'
|
||||
OnClick = Button1Click
|
||||
TabOrder = 1
|
||||
Left = 8
|
||||
Height = 25
|
||||
Top = 8
|
||||
Width = 75
|
||||
end
|
||||
object RadioGroup1: TRadioGroup
|
||||
BorderSpacing.OnChange = nil
|
||||
Caption = 'PageLayout'
|
||||
ItemIndex = 0
|
||||
Items.Strings = (
|
||||
'plSinglePage'
|
||||
'plOneColumn'
|
||||
'plTwoColumnLeft'
|
||||
'plTwoColumnRight'
|
||||
)
|
||||
ParentColor = True
|
||||
Left = 8
|
||||
Height = 103
|
||||
Top = 42
|
||||
Width = 123
|
||||
end
|
||||
object RadioGroup2: TRadioGroup
|
||||
BorderSpacing.OnChange = nil
|
||||
Caption = 'PageMode'
|
||||
ItemIndex = 0
|
||||
Items.Strings = (
|
||||
'pmUseNone'
|
||||
'pmUseOutlines'
|
||||
'pmUseThumbs'
|
||||
'pmFullScreen'
|
||||
)
|
||||
ParentColor = True
|
||||
Left = 142
|
||||
Height = 103
|
||||
Top = 42
|
||||
Width = 123
|
||||
end
|
||||
object PRPage2: TPRPage
|
||||
MarginTop = 20
|
||||
MarginLeft = 5
|
||||
MarginRight = 5
|
||||
MarginBottom = 20
|
||||
Visible = False
|
||||
Left = 30
|
||||
Height = 600
|
||||
Top = 172
|
||||
Width = 600
|
||||
object PRLayoutPanel2: TPRLayoutPanel
|
||||
Align = alClient
|
||||
Left = 6
|
||||
Height = 558
|
||||
Top = 21
|
||||
Width = 588
|
||||
object PRLabel28: TPRLabel
|
||||
Caption = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
|
||||
FontName = fnArial
|
||||
FontSize = 30
|
||||
CharSpace = 1
|
||||
Left = 22
|
||||
Height = 30
|
||||
Width = 557
|
||||
end
|
||||
object PRLabel29: TPRLabel
|
||||
Caption = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
|
||||
FontColor = 34
|
||||
FontName = fnArial
|
||||
FontSize = 30
|
||||
CharSpace = 1
|
||||
Left = 23
|
||||
Height = 30
|
||||
Top = 48
|
||||
Width = 557
|
||||
end
|
||||
object PRLabel30: TPRLabel
|
||||
Caption = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
|
||||
FontColor = 51
|
||||
FontName = fnArial
|
||||
FontSize = 30
|
||||
CharSpace = 1
|
||||
Left = 23
|
||||
Height = 30
|
||||
Top = 96
|
||||
Width = 557
|
||||
end
|
||||
object PRLabel31: TPRLabel
|
||||
Caption = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
|
||||
FontColor = 68
|
||||
FontName = fnArial
|
||||
FontSize = 30
|
||||
CharSpace = 1
|
||||
Left = 23
|
||||
Height = 30
|
||||
Top = 144
|
||||
Width = 557
|
||||
end
|
||||
object PRLabel32: TPRLabel
|
||||
Caption = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
|
||||
FontColor = 85
|
||||
FontName = fnArial
|
||||
FontSize = 30
|
||||
CharSpace = 1
|
||||
Left = 23
|
||||
Height = 30
|
||||
Top = 192
|
||||
Width = 557
|
||||
end
|
||||
object PRLabel33: TPRLabel
|
||||
Caption = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
|
||||
FontColor = 102
|
||||
FontName = fnArial
|
||||
FontSize = 30
|
||||
CharSpace = 1
|
||||
Left = 23
|
||||
Height = 30
|
||||
Top = 240
|
||||
Width = 557
|
||||
end
|
||||
object PRLabel34: TPRLabel
|
||||
Caption = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
|
||||
FontColor = 119
|
||||
FontName = fnArial
|
||||
FontSize = 30
|
||||
CharSpace = 1
|
||||
Left = 23
|
||||
Height = 30
|
||||
Top = 288
|
||||
Width = 557
|
||||
end
|
||||
object PRLabel35: TPRLabel
|
||||
Caption = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
|
||||
FontColor = 136
|
||||
FontName = fnArial
|
||||
FontSize = 30
|
||||
CharSpace = 1
|
||||
Left = 23
|
||||
Height = 30
|
||||
Top = 336
|
||||
Width = 557
|
||||
end
|
||||
object PRLabel36: TPRLabel
|
||||
Caption = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
|
||||
FontColor = 153
|
||||
FontName = fnArial
|
||||
FontSize = 30
|
||||
CharSpace = 1
|
||||
Left = 23
|
||||
Height = 30
|
||||
Top = 384
|
||||
Width = 557
|
||||
end
|
||||
object PRLabel37: TPRLabel
|
||||
Caption = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
|
||||
FontColor = 170
|
||||
FontName = fnArial
|
||||
FontSize = 30
|
||||
CharSpace = 1
|
||||
Left = 23
|
||||
Height = 30
|
||||
Top = 432
|
||||
Width = 557
|
||||
end
|
||||
object PRLabel38: TPRLabel
|
||||
Caption = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
|
||||
FontColor = 204
|
||||
FontName = fnArial
|
||||
FontSize = 30
|
||||
CharSpace = 1
|
||||
Left = 23
|
||||
Height = 30
|
||||
Top = 480
|
||||
Width = 557
|
||||
end
|
||||
object PRLabel39: TPRLabel
|
||||
Caption = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
|
||||
FontColor = clRed
|
||||
FontName = fnArial
|
||||
FontSize = 30
|
||||
CharSpace = 1
|
||||
Left = 25
|
||||
Height = 30
|
||||
Top = 528
|
||||
Width = 557
|
||||
end
|
||||
object PRLabel40: TPRLabel
|
||||
Caption = '1'
|
||||
FontName = fnArial
|
||||
FontSize = 8
|
||||
Left = 6
|
||||
Height = 30
|
||||
Top = 12
|
||||
Width = 13
|
||||
end
|
||||
object PRLabel41: TPRLabel
|
||||
Caption = '2'
|
||||
FontName = fnArial
|
||||
FontSize = 8
|
||||
Left = 6
|
||||
Height = 30
|
||||
Top = 50
|
||||
Width = 13
|
||||
end
|
||||
object PRLabel42: TPRLabel
|
||||
Caption = '3'
|
||||
FontName = fnArial
|
||||
FontSize = 8
|
||||
Left = 6
|
||||
Height = 30
|
||||
Top = 88
|
||||
Width = 13
|
||||
end
|
||||
object PRLabel43: TPRLabel
|
||||
Caption = '4'
|
||||
FontName = fnArial
|
||||
FontSize = 8
|
||||
Left = 6
|
||||
Height = 30
|
||||
Top = 126
|
||||
Width = 13
|
||||
end
|
||||
object PRLabel44: TPRLabel
|
||||
Caption = '5'
|
||||
FontName = fnArial
|
||||
FontSize = 8
|
||||
Left = 6
|
||||
Height = 30
|
||||
Top = 163
|
||||
Width = 13
|
||||
end
|
||||
object PRLabel45: TPRLabel
|
||||
Caption = '6'
|
||||
FontName = fnArial
|
||||
FontSize = 8
|
||||
Left = 4
|
||||
Height = 33
|
||||
Top = 201
|
||||
Width = 13
|
||||
end
|
||||
object PRLabel46: TPRLabel
|
||||
Caption = '7'
|
||||
FontName = fnArial
|
||||
FontSize = 8
|
||||
Left = 4
|
||||
Height = 33
|
||||
Top = 239
|
||||
Width = 13
|
||||
end
|
||||
object PRLabel47: TPRLabel
|
||||
Caption = '8'
|
||||
FontName = fnArial
|
||||
FontSize = 8
|
||||
Left = 4
|
||||
Height = 33
|
||||
Top = 277
|
||||
Width = 13
|
||||
end
|
||||
object PRLabel48: TPRLabel
|
||||
Caption = '9'
|
||||
FontName = fnArial
|
||||
FontSize = 8
|
||||
Left = 4
|
||||
Height = 33
|
||||
Top = 315
|
||||
Width = 13
|
||||
end
|
||||
object PRLabel49: TPRLabel
|
||||
Caption = '10'
|
||||
FontName = fnArial
|
||||
FontSize = 8
|
||||
Left = 2
|
||||
Height = 33
|
||||
Top = 353
|
||||
Width = 15
|
||||
end
|
||||
object PRLabel50: TPRLabel
|
||||
Caption = '11'
|
||||
FontName = fnArial
|
||||
FontSize = 8
|
||||
Left = 2
|
||||
Height = 33
|
||||
Top = 391
|
||||
Width = 15
|
||||
end
|
||||
object PRLabel51: TPRLabel
|
||||
Caption = '12'
|
||||
FontName = fnArial
|
||||
FontSize = 8
|
||||
Left = 2
|
||||
Height = 33
|
||||
Top = 428
|
||||
Width = 15
|
||||
end
|
||||
object PRLabel52: TPRLabel
|
||||
Caption = '13'
|
||||
FontName = fnArial
|
||||
FontSize = 8
|
||||
Left = 2
|
||||
Height = 33
|
||||
Top = 466
|
||||
Width = 15
|
||||
end
|
||||
object PRLabel53: TPRLabel
|
||||
Caption = '14'
|
||||
FontName = fnArial
|
||||
FontSize = 8
|
||||
Left = 2
|
||||
Height = 33
|
||||
Top = 504
|
||||
Width = 15
|
||||
end
|
||||
object PRLabel54: TPRLabel
|
||||
Caption = '15'
|
||||
FontName = fnArial
|
||||
FontSize = 8
|
||||
Left = 2
|
||||
Height = 17
|
||||
Top = 542
|
||||
Width = 15
|
||||
end
|
||||
end
|
||||
end
|
||||
object PReport1: TPReport
|
||||
FileName = 'default.pdf'
|
||||
CreationDate = 37145.935954594897
|
||||
PageLayout = plOneColumn
|
||||
left = 96
|
||||
top = 4
|
||||
end
|
||||
end
|
@ -0,0 +1,150 @@
|
||||
LazarusResources.Add('TForm1','FORMDATA',[
|
||||
'TPF0'#6'TForm1'#5'Form1'#7'Caption'#6#5'Form1'#12'ClientHeight'#3#188#0#11'C'
|
||||
+'lientWidth'#3'+'#1#12'Font.CharSet'#7#12'ANSI_CHARSET'#11'Font.Height'#2#244
|
||||
+#9'Font.Name'#6#5'Arial'#13'PixelsPerInch'#2'`'#18'HorzScrollBar.Page'#3'*'#1
|
||||
+#18'VertScrollBar.Page'#3#187#0#4'Left'#3#200#0#6'Height'#3#188#0#3'Top'#2'k'
|
||||
+#5'Width'#3'+'#1#0#7'TPRPage'#7'PRPage1'#9'MarginTop'#2#20#10'MarginLeft'#2#5
|
||||
+#11'MarginRight'#2#5#12'MarginBottom'#2#20#7'Visible'#8#4'Left'#2#12#6'Heigh'
|
||||
+'t'#3'X'#2#3'Top'#3#157#0#5'Width'#3'X'#2#0#14'TPRLayoutPanel'#14'PRLayoutPa'
|
||||
+'nel1'#5'Align'#7#8'alClient'#4'Left'#2#6#6'Height'#3'.'#2#3'Top'#2#21#5'Wid'
|
||||
+'th'#3'L'#2#0#8'TPRLabel'#8'PRLabel1'#7'Caption'#6#26'ABCDEFGHIJKLMNOPQRSTUV'
|
||||
+'WXYZ'#8'FontName'#7#7'fnArial'#8'FontSize'#2#30#9'CharSpace'#2#1#4'Left'#2
|
||||
+#22#6'Height'#2#30#5'Width'#3'-'#2#0#0#8'TPRLabel'#8'PRLabel2'#7'Caption'#6
|
||||
+#26'ABCDEFGHIJKLMNOPQRSTUVWXYZ'#9'FontColor'#4#0#0'"'#0#8'FontName'#7#7'fnAr'
|
||||
+'ial'#8'FontSize'#2#30#9'CharSpace'#2#1#4'Left'#2#23#6'Height'#2#30#3'Top'#2
|
||||
+'0'#5'Width'#3'-'#2#0#0#8'TPRLabel'#8'PRLabel3'#7'Caption'#6#26'ABCDEFGHIJKL'
|
||||
+'MNOPQRSTUVWXYZ'#9'FontColor'#4#0#0'3'#0#8'FontName'#7#7'fnArial'#8'FontSize'
|
||||
+#2#30#9'CharSpace'#2#1#4'Left'#2#23#6'Height'#2#30#3'Top'#2'`'#5'Width'#3'-'
|
||||
+#2#0#0#8'TPRLabel'#8'PRLabel4'#7'Caption'#6#26'ABCDEFGHIJKLMNOPQRSTUVWXYZ'#9
|
||||
+'FontColor'#4#0#0'D'#0#8'FontName'#7#7'fnArial'#8'FontSize'#2#30#9'CharSpace'
|
||||
+#2#1#4'Left'#2#23#6'Height'#2#30#3'Top'#3#144#0#5'Width'#3'-'#2#0#0#8'TPRLab'
|
||||
+'el'#8'PRLabel5'#7'Caption'#6#26'ABCDEFGHIJKLMNOPQRSTUVWXYZ'#9'FontColor'#4#0
|
||||
+#0'U'#0#8'FontName'#7#7'fnArial'#8'FontSize'#2#30#9'CharSpace'#2#1#4'Left'#2
|
||||
+#23#6'Height'#2#30#3'Top'#3#192#0#5'Width'#3'-'#2#0#0#8'TPRLabel'#8'PRLabel6'
|
||||
+#7'Caption'#6#26'ABCDEFGHIJKLMNOPQRSTUVWXYZ'#9'FontColor'#4#0#0'f'#0#8'FontN'
|
||||
+'ame'#7#7'fnArial'#8'FontSize'#2#30#9'CharSpace'#2#1#4'Left'#2#23#6'Height'#2
|
||||
+#30#3'Top'#3#240#0#5'Width'#3'-'#2#0#0#8'TPRLabel'#8'PRLabel7'#7'Caption'#6
|
||||
+#26'ABCDEFGHIJKLMNOPQRSTUVWXYZ'#9'FontColor'#4#0#0'w'#0#8'FontName'#7#7'fnAr'
|
||||
+'ial'#8'FontSize'#2#30#9'CharSpace'#2#1#4'Left'#2#23#6'Height'#2#30#3'Top'#3
|
||||
+' '#1#5'Width'#3'-'#2#0#0#8'TPRLabel'#8'PRLabel8'#7'Caption'#6#26'ABCDEFGHIJ'
|
||||
+'KLMNOPQRSTUVWXYZ'#9'FontColor'#4#0#0#136#0#8'FontName'#7#7'fnArial'#8'FontS'
|
||||
+'ize'#2#30#9'CharSpace'#2#1#4'Left'#2#23#6'Height'#2#30#3'Top'#3'P'#1#5'Widt'
|
||||
+'h'#3'-'#2#0#0#8'TPRLabel'#8'PRLabel9'#7'Caption'#6#26'ABCDEFGHIJKLMNOPQRSTU'
|
||||
+'VWXYZ'#9'FontColor'#4#0#0#153#0#8'FontName'#7#7'fnArial'#8'FontSize'#2#30#9
|
||||
+'CharSpace'#2#1#4'Left'#2#23#6'Height'#2#30#3'Top'#3#128#1#5'Width'#3'-'#2#0
|
||||
+#0#8'TPRLabel'#9'PRLabel10'#7'Caption'#6#26'ABCDEFGHIJKLMNOPQRSTUVWXYZ'#9'Fo'
|
||||
+'ntColor'#4#0#0#170#0#8'FontName'#7#7'fnArial'#8'FontSize'#2#30#9'CharSpace'
|
||||
+#2#1#4'Left'#2#23#6'Height'#2#30#3'Top'#3#176#1#5'Width'#3'-'#2#0#0#8'TPRLab'
|
||||
+'el'#9'PRLabel11'#7'Caption'#6#26'ABCDEFGHIJKLMNOPQRSTUVWXYZ'#9'FontColor'#4
|
||||
+#0#0#204#0#8'FontName'#7#7'fnArial'#8'FontSize'#2#30#9'CharSpace'#2#1#4'Left'
|
||||
+#2#23#6'Height'#2#30#3'Top'#3#224#1#5'Width'#3'-'#2#0#0#8'TPRLabel'#9'PRLabe'
|
||||
+'l12'#7'Caption'#6#26'ABCDEFGHIJKLMNOPQRSTUVWXYZ'#9'FontColor'#7#6'clBlue'#8
|
||||
+'FontName'#7#7'fnArial'#8'FontSize'#2#30#9'CharSpace'#2#1#4'Left'#2#25#6'Hei'
|
||||
+'ght'#2#30#3'Top'#3#16#2#5'Width'#3'-'#2#0#0#8'TPRLabel'#9'PRLabel13'#7'Capt'
|
||||
+'ion'#6#1'1'#8'FontName'#7#7'fnArial'#8'FontSize'#2#8#4'Left'#2#6#6'Height'#2
|
||||
+#30#3'Top'#2#12#5'Width'#2#13#0#0#8'TPRLabel'#9'PRLabel14'#7'Caption'#6#1'2'
|
||||
+#8'FontName'#7#7'fnArial'#8'FontSize'#2#8#4'Left'#2#6#6'Height'#2#30#3'Top'#2
|
||||
+'2'#5'Width'#2#13#0#0#8'TPRLabel'#9'PRLabel15'#7'Caption'#6#1'3'#8'FontName'
|
||||
+#7#7'fnArial'#8'FontSize'#2#8#4'Left'#2#6#6'Height'#2#30#3'Top'#2'X'#5'Width'
|
||||
+#2#13#0#0#8'TPRLabel'#9'PRLabel16'#7'Caption'#6#1'4'#8'FontName'#7#7'fnArial'
|
||||
+#8'FontSize'#2#8#4'Left'#2#6#6'Height'#2#30#3'Top'#2'~'#5'Width'#2#13#0#0#8
|
||||
+'TPRLabel'#9'PRLabel17'#7'Caption'#6#1'5'#8'FontName'#7#7'fnArial'#8'FontSiz'
|
||||
+'e'#2#8#4'Left'#2#6#6'Height'#2#30#3'Top'#3#163#0#5'Width'#2#13#0#0#8'TPRLab'
|
||||
+'el'#9'PRLabel18'#7'Caption'#6#1'6'#8'FontName'#7#7'fnArial'#8'FontSize'#2#8
|
||||
+#4'Left'#2#4#6'Height'#2'!'#3'Top'#3#201#0#5'Width'#2#13#0#0#8'TPRLabel'#9'P'
|
||||
+'RLabel19'#7'Caption'#6#1'7'#8'FontName'#7#7'fnArial'#8'FontSize'#2#8#4'Left'
|
||||
+#2#4#6'Height'#2'!'#3'Top'#3#239#0#5'Width'#2#13#0#0#8'TPRLabel'#9'PRLabel20'
|
||||
+#7'Caption'#6#1'8'#8'FontName'#7#7'fnArial'#8'FontSize'#2#8#4'Left'#2#4#6'He'
|
||||
+'ight'#2'!'#3'Top'#3#21#1#5'Width'#2#13#0#0#8'TPRLabel'#9'PRLabel21'#7'Capti'
|
||||
+'on'#6#1'9'#8'FontName'#7#7'fnArial'#8'FontSize'#2#8#4'Left'#2#4#6'Height'#2
|
||||
+'!'#3'Top'#3';'#1#5'Width'#2#13#0#0#8'TPRLabel'#9'PRLabel22'#7'Caption'#6#2
|
||||
+'10'#8'FontName'#7#7'fnArial'#8'FontSize'#2#8#4'Left'#2#2#6'Height'#2'!'#3'T'
|
||||
+'op'#3'a'#1#5'Width'#2#15#0#0#8'TPRLabel'#9'PRLabel23'#7'Caption'#6#2'11'#8
|
||||
+'FontName'#7#7'fnArial'#8'FontSize'#2#8#4'Left'#2#2#6'Height'#2'!'#3'Top'#3
|
||||
+#135#1#5'Width'#2#15#0#0#8'TPRLabel'#9'PRLabel24'#7'Caption'#6#2'12'#8'FontN'
|
||||
+'ame'#7#7'fnArial'#8'FontSize'#2#8#4'Left'#2#2#6'Height'#2'!'#3'Top'#3#172#1
|
||||
,#5'Width'#2#15#0#0#8'TPRLabel'#9'PRLabel25'#7'Caption'#6#2'13'#8'FontName'#7
|
||||
+#7'fnArial'#8'FontSize'#2#8#4'Left'#2#2#6'Height'#2'!'#3'Top'#3#210#1#5'Widt'
|
||||
+'h'#2#15#0#0#8'TPRLabel'#9'PRLabel26'#7'Caption'#6#2'14'#8'FontName'#7#7'fnA'
|
||||
+'rial'#8'FontSize'#2#8#4'Left'#2#2#6'Height'#2'!'#3'Top'#3#248#1#5'Width'#2
|
||||
+#15#0#0#8'TPRLabel'#9'PRLabel27'#7'Caption'#6#2'15'#8'FontName'#7#7'fnArial'
|
||||
+#8'FontSize'#2#8#4'Left'#2#2#6'Height'#2#17#3'Top'#3#30#2#5'Width'#2#15#0#0#0
|
||||
+#0#7'TButton'#7'Button1'#22'BorderSpacing.OnChange'#13#7'Caption'#6#9'Create'
|
||||
+'Pdf'#7'OnClick'#7#12'Button1Click'#8'TabOrder'#2#1#4'Left'#2#8#6'Height'#2
|
||||
+#25#3'Top'#2#8#5'Width'#2'K'#0#0#11'TRadioGroup'#11'RadioGroup1'#22'BorderSp'
|
||||
+'acing.OnChange'#13#7'Caption'#6#10'PageLayout'#9'ItemIndex'#2#0#13'Items.St'
|
||||
+'rings'#1#6#12'plSinglePage'#6#11'plOneColumn'#6#15'plTwoColumnLeft'#6#16'pl'
|
||||
+'TwoColumnRight'#0#11'ParentColor'#9#4'Left'#2#8#6'Height'#2'g'#3'Top'#2'*'#5
|
||||
+'Width'#2'{'#0#0#11'TRadioGroup'#11'RadioGroup2'#22'BorderSpacing.OnChange'
|
||||
+#13#7'Caption'#6#8'PageMode'#9'ItemIndex'#2#0#13'Items.Strings'#1#6#9'pmUseN'
|
||||
+'one'#6#13'pmUseOutlines'#6#11'pmUseThumbs'#6#12'pmFullScreen'#0#11'ParentCo'
|
||||
+'lor'#9#4'Left'#3#142#0#6'Height'#2'g'#3'Top'#2'*'#5'Width'#2'{'#0#0#7'TPRPa'
|
||||
+'ge'#7'PRPage2'#9'MarginTop'#2#20#10'MarginLeft'#2#5#11'MarginRight'#2#5#12
|
||||
+'MarginBottom'#2#20#7'Visible'#8#4'Left'#2#30#6'Height'#3'X'#2#3'Top'#3#172#0
|
||||
+#5'Width'#3'X'#2#0#14'TPRLayoutPanel'#14'PRLayoutPanel2'#5'Align'#7#8'alClie'
|
||||
+'nt'#4'Left'#2#6#6'Height'#3'.'#2#3'Top'#2#21#5'Width'#3'L'#2#0#8'TPRLabel'#9
|
||||
+'PRLabel28'#7'Caption'#6#26'ABCDEFGHIJKLMNOPQRSTUVWXYZ'#8'FontName'#7#7'fnAr'
|
||||
+'ial'#8'FontSize'#2#30#9'CharSpace'#2#1#4'Left'#2#22#6'Height'#2#30#5'Width'
|
||||
+#3'-'#2#0#0#8'TPRLabel'#9'PRLabel29'#7'Caption'#6#26'ABCDEFGHIJKLMNOPQRSTUVW'
|
||||
+'XYZ'#9'FontColor'#2'"'#8'FontName'#7#7'fnArial'#8'FontSize'#2#30#9'CharSpac'
|
||||
+'e'#2#1#4'Left'#2#23#6'Height'#2#30#3'Top'#2'0'#5'Width'#3'-'#2#0#0#8'TPRLab'
|
||||
+'el'#9'PRLabel30'#7'Caption'#6#26'ABCDEFGHIJKLMNOPQRSTUVWXYZ'#9'FontColor'#2
|
||||
+'3'#8'FontName'#7#7'fnArial'#8'FontSize'#2#30#9'CharSpace'#2#1#4'Left'#2#23#6
|
||||
+'Height'#2#30#3'Top'#2'`'#5'Width'#3'-'#2#0#0#8'TPRLabel'#9'PRLabel31'#7'Cap'
|
||||
+'tion'#6#26'ABCDEFGHIJKLMNOPQRSTUVWXYZ'#9'FontColor'#2'D'#8'FontName'#7#7'fn'
|
||||
+'Arial'#8'FontSize'#2#30#9'CharSpace'#2#1#4'Left'#2#23#6'Height'#2#30#3'Top'
|
||||
+#3#144#0#5'Width'#3'-'#2#0#0#8'TPRLabel'#9'PRLabel32'#7'Caption'#6#26'ABCDEF'
|
||||
+'GHIJKLMNOPQRSTUVWXYZ'#9'FontColor'#2'U'#8'FontName'#7#7'fnArial'#8'FontSize'
|
||||
+#2#30#9'CharSpace'#2#1#4'Left'#2#23#6'Height'#2#30#3'Top'#3#192#0#5'Width'#3
|
||||
+'-'#2#0#0#8'TPRLabel'#9'PRLabel33'#7'Caption'#6#26'ABCDEFGHIJKLMNOPQRSTUVWXY'
|
||||
+'Z'#9'FontColor'#2'f'#8'FontName'#7#7'fnArial'#8'FontSize'#2#30#9'CharSpace'
|
||||
+#2#1#4'Left'#2#23#6'Height'#2#30#3'Top'#3#240#0#5'Width'#3'-'#2#0#0#8'TPRLab'
|
||||
+'el'#9'PRLabel34'#7'Caption'#6#26'ABCDEFGHIJKLMNOPQRSTUVWXYZ'#9'FontColor'#2
|
||||
+'w'#8'FontName'#7#7'fnArial'#8'FontSize'#2#30#9'CharSpace'#2#1#4'Left'#2#23#6
|
||||
+'Height'#2#30#3'Top'#3' '#1#5'Width'#3'-'#2#0#0#8'TPRLabel'#9'PRLabel35'#7'C'
|
||||
+'aption'#6#26'ABCDEFGHIJKLMNOPQRSTUVWXYZ'#9'FontColor'#3#136#0#8'FontName'#7
|
||||
+#7'fnArial'#8'FontSize'#2#30#9'CharSpace'#2#1#4'Left'#2#23#6'Height'#2#30#3
|
||||
+'Top'#3'P'#1#5'Width'#3'-'#2#0#0#8'TPRLabel'#9'PRLabel36'#7'Caption'#6#26'AB'
|
||||
+'CDEFGHIJKLMNOPQRSTUVWXYZ'#9'FontColor'#3#153#0#8'FontName'#7#7'fnArial'#8'F'
|
||||
+'ontSize'#2#30#9'CharSpace'#2#1#4'Left'#2#23#6'Height'#2#30#3'Top'#3#128#1#5
|
||||
+'Width'#3'-'#2#0#0#8'TPRLabel'#9'PRLabel37'#7'Caption'#6#26'ABCDEFGHIJKLMNOP'
|
||||
+'QRSTUVWXYZ'#9'FontColor'#3#170#0#8'FontName'#7#7'fnArial'#8'FontSize'#2#30#9
|
||||
+'CharSpace'#2#1#4'Left'#2#23#6'Height'#2#30#3'Top'#3#176#1#5'Width'#3'-'#2#0
|
||||
+#0#8'TPRLabel'#9'PRLabel38'#7'Caption'#6#26'ABCDEFGHIJKLMNOPQRSTUVWXYZ'#9'Fo'
|
||||
+'ntColor'#3#204#0#8'FontName'#7#7'fnArial'#8'FontSize'#2#30#9'CharSpace'#2#1
|
||||
+#4'Left'#2#23#6'Height'#2#30#3'Top'#3#224#1#5'Width'#3'-'#2#0#0#8'TPRLabel'#9
|
||||
+'PRLabel39'#7'Caption'#6#26'ABCDEFGHIJKLMNOPQRSTUVWXYZ'#9'FontColor'#7#5'clR'
|
||||
+'ed'#8'FontName'#7#7'fnArial'#8'FontSize'#2#30#9'CharSpace'#2#1#4'Left'#2#25
|
||||
+#6'Height'#2#30#3'Top'#3#16#2#5'Width'#3'-'#2#0#0#8'TPRLabel'#9'PRLabel40'#7
|
||||
+'Caption'#6#1'1'#8'FontName'#7#7'fnArial'#8'FontSize'#2#8#4'Left'#2#6#6'Heig'
|
||||
+'ht'#2#30#3'Top'#2#12#5'Width'#2#13#0#0#8'TPRLabel'#9'PRLabel41'#7'Caption'#6
|
||||
+#1'2'#8'FontName'#7#7'fnArial'#8'FontSize'#2#8#4'Left'#2#6#6'Height'#2#30#3
|
||||
+'Top'#2'2'#5'Width'#2#13#0#0#8'TPRLabel'#9'PRLabel42'#7'Caption'#6#1'3'#8'Fo'
|
||||
+'ntName'#7#7'fnArial'#8'FontSize'#2#8#4'Left'#2#6#6'Height'#2#30#3'Top'#2'X'
|
||||
+#5'Width'#2#13#0#0#8'TPRLabel'#9'PRLabel43'#7'Caption'#6#1'4'#8'FontName'#7#7
|
||||
+'fnArial'#8'FontSize'#2#8#4'Left'#2#6#6'Height'#2#30#3'Top'#2'~'#5'Width'#2
|
||||
+#13#0#0#8'TPRLabel'#9'PRLabel44'#7'Caption'#6#1'5'#8'FontName'#7#7'fnArial'#8
|
||||
+'FontSize'#2#8#4'Left'#2#6#6'Height'#2#30#3'Top'#3#163#0#5'Width'#2#13#0#0#8
|
||||
+'TPRLabel'#9'PRLabel45'#7'Caption'#6#1'6'#8'FontName'#7#7'fnArial'#8'FontSiz'
|
||||
+'e'#2#8#4'Left'#2#4#6'Height'#2'!'#3'Top'#3#201#0#5'Width'#2#13#0#0#8'TPRLab'
|
||||
,'el'#9'PRLabel46'#7'Caption'#6#1'7'#8'FontName'#7#7'fnArial'#8'FontSize'#2#8
|
||||
+#4'Left'#2#4#6'Height'#2'!'#3'Top'#3#239#0#5'Width'#2#13#0#0#8'TPRLabel'#9'P'
|
||||
+'RLabel47'#7'Caption'#6#1'8'#8'FontName'#7#7'fnArial'#8'FontSize'#2#8#4'Left'
|
||||
+#2#4#6'Height'#2'!'#3'Top'#3#21#1#5'Width'#2#13#0#0#8'TPRLabel'#9'PRLabel48'
|
||||
+#7'Caption'#6#1'9'#8'FontName'#7#7'fnArial'#8'FontSize'#2#8#4'Left'#2#4#6'He'
|
||||
+'ight'#2'!'#3'Top'#3';'#1#5'Width'#2#13#0#0#8'TPRLabel'#9'PRLabel49'#7'Capti'
|
||||
+'on'#6#2'10'#8'FontName'#7#7'fnArial'#8'FontSize'#2#8#4'Left'#2#2#6'Height'#2
|
||||
+'!'#3'Top'#3'a'#1#5'Width'#2#15#0#0#8'TPRLabel'#9'PRLabel50'#7'Caption'#6#2
|
||||
+'11'#8'FontName'#7#7'fnArial'#8'FontSize'#2#8#4'Left'#2#2#6'Height'#2'!'#3'T'
|
||||
+'op'#3#135#1#5'Width'#2#15#0#0#8'TPRLabel'#9'PRLabel51'#7'Caption'#6#2'12'#8
|
||||
+'FontName'#7#7'fnArial'#8'FontSize'#2#8#4'Left'#2#2#6'Height'#2'!'#3'Top'#3
|
||||
+#172#1#5'Width'#2#15#0#0#8'TPRLabel'#9'PRLabel52'#7'Caption'#6#2'13'#8'FontN'
|
||||
+'ame'#7#7'fnArial'#8'FontSize'#2#8#4'Left'#2#2#6'Height'#2'!'#3'Top'#3#210#1
|
||||
+#5'Width'#2#15#0#0#8'TPRLabel'#9'PRLabel53'#7'Caption'#6#2'14'#8'FontName'#7
|
||||
+#7'fnArial'#8'FontSize'#2#8#4'Left'#2#2#6'Height'#2'!'#3'Top'#3#248#1#5'Widt'
|
||||
+'h'#2#15#0#0#8'TPRLabel'#9'PRLabel54'#7'Caption'#6#2'15'#8'FontName'#7#7'fnA'
|
||||
+'rial'#8'FontSize'#2#8#4'Left'#2#2#6'Height'#2#17#3'Top'#3#30#2#5'Width'#2#15
|
||||
+#0#0#0#0#8'TPReport'#8'PReport1'#8'FileName'#6#11'default.pdf'#12'CreationDa'
|
||||
+'te'#5#0#160'g'#184#154#239#25#145#14'@'#10'PageLayout'#7#11'plOneColumn'#4
|
||||
+'left'#2'`'#3'top'#2#4#0#0#0
|
||||
]);
|
Reference in New Issue
Block a user