Data.DB.TDataSet.AfterPost
[–] Properties | |
---|---|
Type: event | |
Visibility: public | |
Source: Data.DB.pas Data.DB.hpp
| |
Unit: Data.DB | |
Parent: TDataSet |
Delphi
property AfterPost: TDataSetNotifyEvent read FAfterPost write FAfterPost;
C++
__property TDataSetNotifyEvent AfterPost = {read=FAfterPost, write=FAfterPost};
Description
Occurs after an application writes the active record to the database or change log and returns to browse state.
Write an AfterPost event handler to take specific action immediately after an application posts a change to the active record. AfterPost is called after a modification or insertion is made to a record.
AfterPost is an event handler of type Data.DB.TDataSetNotifyEvent.
See Also
Code Examples