how to print report if subreport is empty
?Hi,
I've a report within subreport.
sometime my subreport is empty but i need to print my report
how to print my report if subreport is empty?
tks
--- posted by geoForum on http://delphi.newswhat.com
I've a report within subreport.
sometime my subreport is empty but i need to print my report
how to print my report if subreport is empty?
tks
--- posted by geoForum on http://delphi.newswhat.com
This discussion has been closed.
Comments
Be sure the NoDataBehaviors property of your report and subreport is set to
ndBlankReport rather than ndBlankPage. This will allow non-data aware
components to show up even if there is no data available.
--
Regards,
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
Also be sure you have the SkipWhenNoRecords property of the Detail Pipeline
set to False.
--
Regards,
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
my report have only a DetailBand.
I need to print only 1 record Master with/without details
the report show only the label without the data
my report is attached to pipeline1 (DatasourceMaster)
my subreport is attached to pipeline2 (DataSourceDetail)
if the DataSourceDetail is empty then the report show only de label and
not show the data.
if the DataSourceDetail is not empty then the report is ok.
how can I resopve?
tks
set to
--- posted by geoForum on http://delphi.newswhat.com
tksssssssssss very much!!!!
this is my problem!
now i've switch to false SkipWhenNoRecords and all is ok!
tks for your help
Pipeline
and
--- posted by geoForum on http://delphi.newswhat.com