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
SyntaxSOAssociate UpdatedAssociate { get; }
ReadOnly Property UpdatedAssociate As SOAssociate
Get
Dim instance As IProjectMember
Dim value As SOAssociate
value = instance.UpdatedAssociate
property SOAssociate^ UpdatedAssociate {
SOAssociate^ get ();
}
Property Value
Type:
SOAssociateSOAssociate - object containing the last editor of the project member
Implements
IModelBaseUpdatedAssociate
ExamplesUpdatedAssociate
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.
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