Function
EN
Version 1.90
@CreateNote
Database
Note
Syntax
@CreateNote(DBHANDLE1;NOTEHANDLE2);
Description
Creates a new document in the database with the DBHANDLE DBHANDLE1 for the NOTEHANDLE NOTEHANDLE2 and returns the NOTEHANDLE to it.
Example: @CreateNote(DBHANDLE1;NOTEHANDLE2)
DBHANDLE1:=@OpenDB("TEST.NSF");
NOTEHANDLE2:=@CreateNote(DBHANDLE1;NOTEHANDLE2);
Form[NOTEHANDLE2]:="TEST FORM";
NOTEHANDLE2:=@CloseNote(NOTEHANDLE2;1);
DBHANDLE1:=@CloseDB(DBHANDLE1);
A database is opened, a new document is created and saved, and finally the database is closed again.
Note : This text was machine-translated and may contain inaccuracies.
