.

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: Categories property
This agent allows the user to change the database catalog categories of the current database.

Sub Initialize
 Dim ws As New NotesUIWorkspace
 Dim session As New NotesSession
 Dim db As NotesDatabase
 Dim categories As Variant
 Set db = session.CurrentDatabase
 categories = ws.Prompt(PROMPT_OKCANCELEDIT, _
 "Categories", _
 "Enter categories separated by semicolons", _
 db.Categories)
 If Not Isempty(categories) Then
   db.Categories = categories
 End If
End Sub

See Also