IAuditOperations.Stamp

Syntax

Stamp: Double;

Description

The Stamp property returns date and time of operation. The date is viewed in the system format of dates.

Example

Sub Main;

Var

MB: IMetabase;

MS: IMetabaseSecurity;

AL: IAuditLog;

ALogon: IAuditLogons;

Operat: IAuditOperations;

d: Double;

Begin

MB:=MetabaseClass.Active;

MS:=MB.Security;

Al:=MS.OpenAuditLog;

ALogon:= AL.OpenLogons(False);

Operat:=Al.OpenOperations(ALogon.Session);

d:=Operat.Stamp;

End Sub Main;

After executing the example the "d" variable contains date and time of the last operation.

See also:

IAuditOperations