@DbTitle (Formula Language)
Returns the title of the current database.
Syntax
@DbTitle
Return value
title
Text. The title of the current database.
Examples
This form action formula uses @DbTitle to let the user create and send an e-mail memo to the author of the current document. @DbTitle is used in the memo's Subject.return:=@Char(13);
memobody:=@Prompt([OKCANCELEDIT]; "Mail message";
"Enter the contents of your mail message below." + return + "It will be sent to " + From + "."; "" );
@MailSend(From; ""; ""; "Your posting in " + @DbTitle; "";
memobody:return; [IncludeDoclink])