Contact the sale is linked to
The contact associated with the sale. It may also be 0 if no contact is associated with the sale
Namespace:
SuperOffice.COM.SuperOfficeDB
Assembly:
SuperOfficeDB.Interop (in SuperOfficeDB.Interop.dll) Version: 8.0.0.0
SyntaxSOContact Contact { get; set; }
Property Contact As SOContact
Get
Set
Dim instance As ISale
Dim value As SOContact
value = instance.Contact
instance.Contact = value
property SOContact^ Contact {
SOContact^ get ();
void set (SOContact^ value);
}
Property Value
Type:
SOContactSOContact object containing the company the appointment is with.
ExamplesContact
This text may be copied to the notepad, and saved as a *.vbs file. Remember to change the login information.
Dim objSO
dim result
Set objSO = CreateObject("SuperOffice.Application")
If not (objSO is nothing) Then
MsgBox "Company the Current sale is with: " & objSO.CurrentSale.Contact.Name, vbInformation + vbOKOnly, "SuperCOM"
else
MsgBox "Unable to connect to database"
end if
Set objSO = Nothing
See Also