IProjectMemberComment Property |
Namespace: SuperOffice.COM.SuperOfficeDB
Comment
This text may be copied to the notepad, and saved as a *.vbs file. Remember to change the login information.
Dim objSO Dim projMemb Set objSO = CreateObject("SuperOffice.Application") If not (objSO is nothing) Then projMemb = ObjSO.Database.GetProjectMember(1) if projMemb.comment = "" then Msgbox "The project member has nothing written on comments.", vbInformation + vbOKOnly, "SuperCOM" else MsgBox "Project member comment: " & projMemb.comment, vbInformation + vbOKOnly, "SuperCOM" end if else MsgBox "Unable to connect to database" end if Set objSO = Nothing