Problem with ppViewer.ZoomSetting
Hello
Some time ago (1 1/2 year) I had the following procedure in one of my
projects (I am only a hobby programmer):
procedure TfoRepo.spbPreviewWholeClick(Sender: TObject);
begin
ppViewer1.ZoomSetting := zsWholePage;
mskPreviewPercentage.Text := IntToStr(ppViewer1.CalculatedZoom);
pnlPreviewBar.SetFocus;
end;
When I now try to compile this project, there is an error message:
Undefinierter Bezeichner zsWholePage (in English: zsWholePage not
defined). What is wrong? The unit ppViewr is declared in "uses" . What
could be the problem?
I use ReportBuilder Enterprise 7.01.
Thank you for your help!
Thomas Baumgartner
Some time ago (1 1/2 year) I had the following procedure in one of my
projects (I am only a hobby programmer):
procedure TfoRepo.spbPreviewWholeClick(Sender: TObject);
begin
ppViewer1.ZoomSetting := zsWholePage;
mskPreviewPercentage.Text := IntToStr(ppViewer1.CalculatedZoom);
pnlPreviewBar.SetFocus;
end;
When I now try to compile this project, there is an error message:
Undefinierter Bezeichner zsWholePage (in English: zsWholePage not
defined). What is wrong? The unit ppViewr is declared in "uses" . What
could be the problem?
I use ReportBuilder Enterprise 7.01.
Thank you for your help!
Thomas Baumgartner
This discussion has been closed.
Comments
uses ppTypes;
... should it do.
(RBE ships with source - us full text searching for unknowns)
regards,
Chris Ueberall;