AfterPost (Delphi)

From RAD Studio Code Examples
Jump to: navigation, search

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

See Also