ISaleCreatedAssociate Property |
The user that created the object
The associate that first created the sale
Namespace:
SuperOffice.COM.SuperOfficeDB
Assembly:
SuperOfficeDB.Interop (in SuperOfficeDB.Interop.dll) Version: 8.0.0.0
SyntaxSOAssociate CreatedAssociate { get; }
ReadOnly Property CreatedAssociate As SOAssociate
Get
Dim instance As ISale
Dim value As SOAssociate
value = instance.CreatedAssociate
property SOAssociate^ CreatedAssociate {
SOAssociate^ get ();
}
Property Value
Type:
SOAssociateSOAssociate - object containing the creator of the sale.
Implements
IModelBaseCreatedAssociate
ExamplesCreatedAssociate
This text may be copied to the notepad, and saved as a *.vbs file. Remember to change the login information.
Dim objSO
Set objSO = CreateObject("SuperOffice.Application")
If not (objSO is nothing) Then
MsgBox "Current sale creator: " & objSO.CurrentSale.CreatedAssociate.FullName, vbInformation + vbOKOnly, "SuperCOM"
else
MsgBox "Unable to connect to database"
end if
Set objSO = Nothing
See Also