.

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: IsActivatable property
This agent checks the activatable status of an agent.

Sub Initialize
 Dim session As New NotesSession
 Dim db As NotesDatabase
 Dim agent As NotesAgent
 Set db = session.CurrentDatabase
 Set agent = db.GetAgent("Get file path")
 If agent.IsActivatable Then
   Messagebox "Is activatable",, agent.Name
 Else
   Messagebox "Is not activatable",, agent.Name
 End If
End Sub

See Also