Currency - that Amount,Cost,Earning are denoted in
It's possible to sell in different currencies. This will return the currency the sale object was sold in
Namespace:
SuperOffice.COM.SuperOfficeDB
Assembly:
SuperOfficeDB.Interop (in SuperOfficeDB.Interop.dll) Version: 8.0.0.0
SyntaxIListTextItem Currency { get; set; }
Property Currency As IListTextItem
Get
Set
Dim instance As ISale
Dim value As IListTextItem
value = instance.Currency
instance.Currency = value
property IListTextItem^ Currency {
IListTextItem^ get ();
void set (IListTextItem^ value);
}
Property Value
Type:
IListTextItemIListTextItem - A reference to the iListtextitem object
ExamplesCurrency
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 currency: " & objSO.CurrentSale.currency, vbInformation + vbOKOnly, "SuperCOM"
else
MsgBox "Unable to connect to database"
end if
Set objSO = Nothing
See Also