Empty Report
PixelPointer
Vaughan, Ontario
This may sound like a silly question, but is there anyway that I can show a message to report users when a report has no data?
Comments
DataSet_Name.Open;
If DataSet_Name.RecordCount = 0 then//where report dataset or MasterData.DataSet
ShowMessage('Report is empty');
end;