IProjectMemberIdentity Property |
Namespace: SuperOffice.COM.SuperOfficeDB
Identity
This text may be copied to the notepad, and saved as a *.vbs file. Remember to change the login information.
This will return 1, since the example also use the Function GetProjectMember(ProjectMemberId As Long).
Dim objSO Dim projMemb Set objSO = CreateObject("SuperOffice.Application") If not (objSO is nothing) Then projMemb = ObjSO.Database.GetProjectMember(1) msgbox "The project member has projectmember_id = " & projMemb.identity, vbInformation + vbOKOnly, "SuperCOM" else MsgBox "Unable to connect to database" end if Set objSO = Nothing