|   | Order and save right now! 20% off with the 729824315 dicscount code for Ultimate Pack and any another product for Delphi from Greatis Programming! | 
⤷ Check if table is empty
Use RecordCount property of Table component. If RecordCount is 0, then table is empty.
procedure TForm1.Button1Click(Sender: TObject);
begin
  if Table1.RecordCount=0 then
    Label1.Caption:='Table is emply'
  else
    Label1.Caption:='Table is not emply';
end;
- 
							More for developers
 
					 
							