Click or drag to resize

IProjectMemberProject Property

Project The project of which the project member is a member.

Namespace:  SuperOffice.COM.SuperOfficeDB
Assembly:  SuperOfficeDB.Interop (in SuperOfficeDB.Interop.dll) Version: 8.0.0.0
Syntax
SOProject Project { get; set; }

Property Value

Type: SOProject
SOProject - object containing the project the project member belongs to
Examples

Project

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

This example returns the name of the project of which the project member is a member.

VB
Dim objSO
Dim projMemb
Set objSO = CreateObject("SuperOffice.Application")
If not (objSO is nothing) Then
    projMemb = ObjSO.Database.GetProjectMember(1)
    msgbox "The project member is a member of the project named: " & projMemb.Project.Name, vbInformation + vbOKOnly, "SuperCOM"
else
    MsgBox "Unable to connect to database"
end if
Set objSO = Nothing

See Also