I am running Crystal 8.0 against SQL SERVER 2000.
I want to suppress the printing in the subreport of the Page header of the main report.
I have tried setting up a shared variable to pass a value of "True" to the main report when the subreport prints records so the page header prints for the main report but not for the subreport.
The shared variable looks like this in the subreport:
SHARED BOOLEANVAR SUPPRESSFLAG:= TRUE;
and is used in conditional suppressing in "format section"
in the main report's Page Header as:
SHARED BOOLEANVAR SUPPRESSFLAG;
IF SUPPRESSFLAG = TRUE THEN TRUE ELSE FALSE
Basically it doesn't work.
I want to suppress the printing in the subreport of the Page header of the main report.
I have tried setting up a shared variable to pass a value of "True" to the main report when the subreport prints records so the page header prints for the main report but not for the subreport.
The shared variable looks like this in the subreport:
SHARED BOOLEANVAR SUPPRESSFLAG:= TRUE;
and is used in conditional suppressing in "format section"
in the main report's Page Header as:
SHARED BOOLEANVAR SUPPRESSFLAG;
IF SUPPRESSFLAG = TRUE THEN TRUE ELSE FALSE
Basically it doesn't work.