IChecklistMode Property |
Namespace: SuperOffice.COM.SuperOfficeDB
Mode
This text may be copied to the notepad, and saved as a *.vbs file. Remember to change the login information
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