RAD Studio Athens

1.11

Description

This example updates the form's status bar with a message when an AfterPost event occurs.

Code

procedure TForm1.ClientDataSet1AfterPost(DataSet: TDataSet);
begin
   Memo2.Lines.Add('After posting a record');
end;

Uses