IProjectMemberPersonId Property |
Namespace: SuperOffice.COM.SuperOfficeDB
Person
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.GetProjectMember(1) msgbox "Project member�s title:" & projMemb.Person.Title, vbInformation + vbOkOnly, "SuperCOM" else MsgBox "Unable to connect to database" end if Set objSO = Nothing
PersonId
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.GetProjectMember(1) msgbox "The project member has person_id = " & projMemb.PersonID, vbInformation + vbOKOnly, "SuperCOM" else MsgBox "Unable to connect to database" end if Set objSO = Nothing