Credited
Credited is a list defined by the database administrator. It could be used for defining different groups that should be credited for the sale, but this usage is not fixed the field only appears when the status is changed to sold. E.g. "Sale group 1".
Namespace:
SuperOffice.COM.SuperOfficeDB
Assembly:
SuperOfficeDB.Interop (in SuperOfficeDB.Interop.dll) Version: 8.0.0.0
SyntaxIListTextItem Credited { get; set; }
Property Credited As IListTextItem
Get
Set
Dim instance As ISale
Dim value As IListTextItem
value = instance.Credited
instance.Credited = value
property IListTextItem^ Credited {
IListTextItem^ get ();
void set (IListTextItem^ value);
}
Property Value
Type:
IListTextItemIListTextItem - A reference to the iListtextitem object
ExamplesCredited
This text may be copied to the notepad, and saved as a *.vbs file. Remember to change the login information.
Dim objSO
Set objSO = CreateObject("SuperOffice.Application")
If not (objSO is nothing) Then
MsgBox "Current sale credited: " & objSO.CurrentSale.credited.text, vbInformation + vbOKOnly, "SuperCOM"
else
MsgBox "Unable to connect to database"
end if
Set objSO = Nothing
See Also