Number
The sales number, seen in GUI as the number on the Details panel of a sale
Namespace:
SuperOffice.COM.SuperOfficeDB
Assembly:
SuperOfficeDB.Interop (in SuperOfficeDB.Interop.dll) Version: 8.0.0.0
Syntaxstring Number { get; set; }
Property Number As String
Get
Set
Dim instance As ISale
Dim value As String
value = instance.Number
instance.Number = value
property String^ Number {
String^ get ();
void set (String^ value);
}
Property Value
Type:
StringString – the sales number
ExamplesNumber
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 number: " & objSO.Currentsale.number, vbInformation + vbOKOnly, "SuperCOM"
else
MsgBox "Unable to connect"
end if
Set objSO = Nothing
See Also