Empty Report

PixelPointerPixelPointer Vaughan, Ontario
edited 5:42AM in FastReport 3.0
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

  • edited 5:42AM
    begin
    DataSet_Name.Open;
    If DataSet_Name.RecordCount = 0 then//where report dataset or MasterData.DataSet
    ShowMessage('Report is empty');
    end;
  • PixelPointerPixelPointer Vaughan, Ontario
    edited 5:42AM
    Thanks, Den.

Leave a Comment