Function EN Version 1.90

@Modified

Note NotesSystem TimeDate

Syntax

@Modified(NOTEHANDLE1);

Description

Returns the time of the last modification of the document with the NOTEHANDLE NOTEHANDLE1.

Example: @Modified(NOTEHANDLE1)

DBHANDLE:=@OpenDB("TEST.NSF");
VIEWHANDLE:=@OpenView(DBHANDLE;"TEST VIEW");
VIEWPOSITION:=1:1:1:0:0:0:0:0:0:0;
NOTEHANDLE1:=@OpenNoteByPosition(DBHANDLE;VIEWHANDLE;VIEWPOSITION;NOTEHANDLE1);
@LogReport(@Modified(NOTEHANDLE1));
NOTEHANDLE1:=@CloseNote(NOTEHANDLE1;0);
VIEWHANDLE:=@CloseView(VIEWHANDLE);
DBHANDLE:=@CloseDB(DBHANDLE);

A database is opened, a document is searched for and opened, the time/date value of its last modification is output, the document is closed again, and finally the database is closed.

Note : This text was machine-translated and may contain inaccuracies.