ppViewer
Hi,
I want to use the ppViewer component to view certain reports which may NOT
be printed by the user.
Using the Internal PrintPreview function from the ppReport Component has the
printbutton on it and other controls that i don't want. Using ppViewer.Show
in combination with ppReport.Print (to screen) causes both previews to be
seen by the user.
Anyone who knows how to deal with this ?
JW
I want to use the ppViewer component to view certain reports which may NOT
be printed by the user.
Using the Internal PrintPreview function from the ppReport Component has the
printbutton on it and other controls that i don't want. Using ppViewer.Show
in combination with ppReport.Print (to screen) causes both previews to be
seen by the user.
Anyone who knows how to deal with this ?
JW
This discussion has been closed.
Comments
and PriorPage routines to traverse through the pages.
procedure TForm1.Button1Click(Sender: TObject);
begin
ppReport1.PrintToDevices;
end;
procedure TForm1.Button2Click(Sender: TObject);
begin
ppViewer1.NextPage;
end;
procedure TForm1.Button3Click(Sender: TObject);
begin
ppViewer1.PriorPage;
end;
Cheers,
Jim Bennett
Digital Metaphors
http://www.digital-metaphors.com
info@digital-metaphors.com