IProjectMemberRank Property |
Namespace: SuperOffice.COM.SuperOfficeDB
Rank
This text may be copied to the notepad, and saved as a *.vbs file. Remember to change the login information.
This will return the project members rank.
Dim objSO Dim projMemb Set objSO = CreateObject("SuperOffice.Application") If not (objSO is nothing) Then projMemb = ObjSO.Database.GetProjectMember(1) msgbox "The project member rank is " & projMemb.rank, vbInformation + vbOKOnly, "SuperCOM" else MsgBox "Unable to connect to database" end if Set objSO = Nothing