ISaleReasonStalled Property |
The reason why the sale is stalled
Reason is a list defined by the database administrator. It may be used to define different reasons for losing a sale the field only appears when the status is changed to "lost". For example, "our price was too high".
New in Seven.
Namespace:
SuperOffice.COM.SuperOfficeDB
Assembly:
SuperOfficeDB.Interop (in SuperOfficeDB.Interop.dll) Version: 8.0.0.0
SyntaxIListTextItem ReasonStalled { get; set; }
Property ReasonStalled As IListTextItem
Get
Set
Dim instance As ISale
Dim value As IListTextItem
value = instance.ReasonStalled
instance.ReasonStalled = value
property IListTextItem^ ReasonStalled {
IListTextItem^ get ();
void set (IListTextItem^ value);
}
Property Value
Type:
IListTextItemIListTextItem - A reference to the iListtextitem object
ExamplesReason
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 reason: " & objSO.CurrentSale.reason.text, vbInformation + vbOKOnly, "SuperCOM"
else
MsgBox "Unable to connect to database"
end if
Set objSO = Nothing
See Also