.

HCLSoftware Business Partner
Domino Consulting Services
CRUCIAL Notes Tools
+1 212-599-2048

Domino Consulting Services
CRUCIAL Notes Tools
Domino administration
Notes development

Facebook Twitter YouTube
Chat now       
.
ProductsDownloadsNewsAbout usContact


Need a Domino Consultant? Call NotesMail +1 212-599-2048 - HCLSoftware Business Partner

LOTUSSCRIPT/COM/OLE CLASSES


Calling a function or subroutine
Use the Call statement to call a function where no return value is wanted or to call a subroutine. Enclose the argument list in parentheses. For example:
The parentheses can be omitted if the function or subroutine takes no arguments. For example:
You can also omit the Call keyword. In this form, do not enclose the argument list in parentheses. For example:
Note For clarity and consistency, this documentation always uses the Call keyword.

A function reference, which resolves to its return value, consists of the name of the function followed by the argument list in parentheses. An example is Inputbox$ below:


See Also