IProjectMemberCreateAssociate Property |
The associate that first created the project member.
Actually the same as createdassociate.
Namespace: SuperOffice.COM.SuperOfficeDB
CreateAssociate
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) MsgBox "Project member creator: " & projMemb.CreateAssociate.FullName, vbInformation + vbOKOnly, "SuperCOM" else MsgBox "Unable to connect to database" end if Set objSO = Nothing