Click or drag to resize

IProjectMemberUpdatedAssociate Property

The last user to modify the object The last associate that updated this Project Member. If the project member has never been updated, this will return 0

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

Property Value

Type: SOAssociate
SOAssociate - object containing the last editor of the project member

Implements

IModelBaseUpdatedAssociate
Examples

UpdatedAssociate

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 last edited the projectmember.

VB
Dim objSO
Set objSO = CreateObject("SuperOffice.Application")
If not (objSO is nothing) Then
    projMemb = ObjSO.Database.GetProjectMember(1)
    msgbox "The project member was last updated by: " & projMemb.UpdatedAssociate.FullName, vbInformation + vbOKOnly, "SuperCOM"
else
    MsgBox "Unable to connect to database"
end if
Set objSO = Nothing

See Also