IProjectMemberContact Property |
Namespace: SuperOffice.COM.SuperOfficeDB
Contact
This text may be copied to the notepad, and saved as a *.vbs file. Remember to change the login information.
This example returns the name of the contact this project member belongs to.
Dim objSO Dim projMemb Set objSO = CreateObject("SuperOffice.Application") If not (objSO is nothing) Then projMemb = ObjSO.Database.GetProjectMember(1) msgbox "The project member is a contact person with the company named: " & projMemb.Contact.Name, vbInformation + vbOKOnly, "SuperCOM" else MsgBox "Unable to connect to database" end if Set objSO = Nothing