Bde.DBTables.TSession.OnStartup

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnStartup: TNotifyEvent read FOnStartup write FOnStartup;

C++

__property System::Classes::TNotifyEvent OnStartup = {read=FOnStartup, write=FOnStartup};

Properties

Type Visibility Source Unit Parent
event published
Bde.DBTables.pas
Bde.DBTables.hpp
Bde.DBTables TSession

Description

Occurs when an application activates a session.

Write an OnStartup event handler to take specific actions when an application activates a session. A session is activated by setting its Active property to true, or by opening a database or dataset associated with the session (both of which set Active to true).

See Also