Click or drag to resize

IProjectMemberCreatedAssociate Property

The user that created the object The associate that first created the project member

Namespace:  SuperOffice.COM.SuperOfficeDB
Assembly:  SuperOfficeDB.Interop (in SuperOfficeDB.Interop.dll) Version: 8.0.0.0
Syntax
SOAssociate CreatedAssociate { get; }

Property Value

Type: SOAssociate
SOAssociate - object containing the creator of the project member

Implements

IModelBaseCreatedAssociate
Examples

CreatedAssociate

This text may be copied to the notepad, and saved as a *.vbs file. Remember to change the login information.

This example returns the Full name of the associate that created the project member.

VB
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.CreatedAssociate.FullName, vbInformation + vbOKOnly, "SuperCOM"
else
    MsgBox "Unable to connect to database"
end if
Set objSO = Nothing

See Also