Occurs when an application attempts to open a database for the first time and the database file is encrypted and current password is invalid.
type TABSPasswordEvent = procedure(Sender: TObject; var Continue: Boolean) of object;
property OnPassword: TABSPasswordEvent;
Description
OnPassword occurs when an application attempts to open a database for the first time and the database file is encrypted and current password is invalid.
If you want to try to open database with another password, set Password property and set Continue to True.
To cancel opening encrypted database set Continue to false.
|
|