Click or drag to resize

ISaleSaleText Property

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
Syntax
string SaleText { get; set; }

Property Value

Type: String
String – the description text of the sale
Examples

SaleText

This text may be copied to the notepad, and saved as a *.vbs file. Remember to change the login information.

VB
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