Click or drag to resize

ISaleSource Property

Source - Where the sale originated Source is a list defined by the database administrator. It may be used to define different sources for obtaining a sale the field only appears when the status is changed to "sold". For example, a response from our website.

Namespace:  SuperOffice.COM.SuperOfficeDB
Assembly:  SuperOfficeDB.Interop (in SuperOfficeDB.Interop.dll) Version: 8.0.0.0
Syntax
IListTextItem Source { get; set; }

Property Value

Type: IListTextItem
IListTextItem - A reference to the iListtextitem object
Examples

Source

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 "Current sale source: " & objSO.CurrentSale.source.text, vbInformation + vbOKOnly, "SuperCOM"
else
    MsgBox "Unable to connect to database"
end if
Set objSO = Nothing

See Also