You are not logged in.
Pages: 1
Can I make this output (printout) screen with TGDIPages
sample code here
with TGDIPages.Create(self) do
try
BeginDoc;
...
...
...
...
EndDoc;
ShowPreviewForm;
finally
free;
end;
I want x=140 y=210 text = 'ABC TEST TEXT OUT' on preview framework
same
Canvas.Textout(140,210,'ABC TEST TEXT OUT');
Last edited by 3ddark (2013-08-14 13:36:19)
Offline
Perhaps here TGDIPages is not the right component.
It focuses on multi-page report generation, with automatic layout and pagination.
Take a look at the TPdfDocumentGDI class in SynPDF.pas and its internal Canvas.
You can do whatever you want at the page level, and still use regular TCanvas methods.
Offline
Is there (SynPdf.pas) a print preview before printing?
same TGDIPages or QuickReport print preview
I see SynPdf.pas
thanks ab
Offline
Perhaps such a feature can be added to new updates.
I think it would be very nice.
From QuickReport is much better and convenient.
Offline
Pages: 1