Click or drag to resize

ISaleContact Property

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
Syntax
SOContact Contact { get; set; }

Property Value

Type: SOContact
SOContact object containing the company the appointment is with.
Examples

Contact

This text may be copied to the notepad, and saved as a *.vbs file. Remember to change the login information.

VB
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