.

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


Examples: MaxSize property
This following script prints the size, quota, and maximum size of the current database.

Dim db As NotesDatabase
Dim session As New NotesSession
Set db = session.CurrentDatabase
Print "Database size is: ", db.Size
Print "Database Quota is: ", db.SizeQuota
Print "Database Maximum Size is: ", db.MaxSize, "K"

See Also