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
SyntaxIListTextItem Source { get; set; }
Property Source As IListTextItem
Get
Set
Dim instance As ISale
Dim value As IListTextItem
value = instance.Source
instance.Source = value
property IListTextItem^ Source {
IListTextItem^ get ();
void set (IListTextItem^ value);
}
Property Value
Type:
IListTextItemIListTextItem - A reference to the iListtextitem object
ExamplesSource
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 "Current sale source: " & objSO.CurrentSale.source.text, vbInformation + vbOKOnly, "SuperCOM"
else
MsgBox "Unable to connect to database"
end if
Set objSO = Nothing
See Also