IPersonAssociate Property |
The owning associate for the person. Not currently used. Should be id = 0.
Namespace:
SuperOffice.COM.SuperOfficeDB
Assembly:
SuperOfficeDB.Interop (in SuperOfficeDB.Interop.dll) Version: 8.0.0.0
SyntaxSOAssociate Associate { get; set; }
Property Associate As SOAssociate
Get
Set
Dim instance As IPerson
Dim value As SOAssociate
value = instance.Associate
instance.Associate = value
property SOAssociate^ Associate {
SOAssociate^ get ();
void set (SOAssociate^ value);
}
Property Value
Type:
SOAssociate
ExamplesAssociate
Dim objSO
Set objSO = CreateObject("SuperOffice.Application")
If not (objSO is nothing) Then
MsgBox "Current person associate loginname: " & objSO.CurrentPerson.Associate.LoginName, vbInformation + vbOkOnly, "SuperCOM"
else
MsgBox "Unable to connect to database"
end if
Set objSO = Nothing
See Also