Topic: indicate the numbers of rows

Hi.

Is possible to specify the numbers of rows thas appear in a tablegrid, after a search in a text field or in a message box?.
Thank you

Re: indicate the numbers of rows

Yes, you can.

procedure Form1_TableGrid1_OnChange (Sender: string);
begin
     Form1.Label1.Caption := IntToStr( Form1.TableGrid1.RowCount );
end;

Let me know, if you need example project.

Dmitry.