SaleText - description of the sale
The sales textbox - it may contain text describing the sale. Filled out by the user.
Namespace:
SuperOffice.COM.SuperOfficeDB
Assembly:
SuperOfficeDB.Interop (in SuperOfficeDB.Interop.dll) Version: 8.0.0.0
Syntaxstring SaleText { get; set; }
Property SaleText As String
Get
Set
Dim instance As ISale
Dim value As String
value = instance.SaleText
instance.SaleText = value
property String^ SaleText {
String^ get ();
void set (String^ value);
}
Property Value
Type:
StringString – the description text of the sale
ExamplesSaleText
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 description: " & objSO.CurrentSale.saletext, vbInformation + vbOKOnly, "SuperCOM"
else
MsgBox "Unable to connect to database"
end if
Set objSO = Nothing
See Also