Click or drag to resize

IChecklistMode Property

bitflag corresponding to the checkboxes in the checklist archive A checklist is a combination of appointments, to-dos, documents, phone calls and sales. A Checklists mode can be a combination of all or some of these activities.

Namespace:  SuperOffice.COM.SuperOfficeDB
Assembly:  SuperOfficeDB.Interop (in SuperOfficeDB.Interop.dll) Version: 8.0.0.0
Syntax
EChecklistMode Mode { get; set; }

Property Value

Type: EChecklistMode
EchecklistMode – the mode of this checklist
Examples

Mode

This text may be copied to the notepad, and saved as a *.vbs file. Remember to change the login information

VB
Dim objSO
Dim objCheckList
Dim objCheckLists

Set objSO = CreateObject("SuperOfficeDB.Database")
enAListAll = 15 

a = objSO.Login("<USERID>","<PASSWORD>")
if a then
    set objCheckLists = objSO.Database.GetCheckList(0, enAListAll)
    assid = objCheckLists.AssociateId
    MsgBox "This checklist is owned by id no. " & assid, vbInformation, "SuperCOM"
    ownername = objchecklists.GetOwnerName
    MsgBox "Owner (full name) of this checklist is: " & ownername, vbInformation, "SuperCOM"
    'This will return 15 since we asked for enAListAll in the GetCheckList functio  
    MsgBox "Mode: " & objchecklists.mode
else
    MsgBox "Unable to connect to database"
end if

Set objSO = Nothing

See Also