Bde.DBTables.TSession.OnStartup

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: event
Visibility: published
Source:
Bde.DBTables.pas
Bde.DBTables.hpp
Unit: Bde.DBTables
Parent: TSession

Delphi

property OnStartup: TNotifyEvent read FOnStartup write FOnStartup;

C++

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

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