SaleDate - expected closing date
The expected sales date for when the sale will be sold (or lost).
Namespace:
SuperOffice.COM.SuperOfficeDB
Assembly:
SuperOfficeDB.Interop (in SuperOfficeDB.Interop.dll) Version: 8.0.0.0
SyntaxDateTime SaleDate { get; set; }
Property SaleDate As DateTime
Get
Set
Dim instance As ISale
Dim value As DateTime
value = instance.SaleDate
instance.SaleDate = value
property DateTime SaleDate {
DateTime get ();
void set (DateTime value);
}
Property Value
Type:
DateTimeDate – formatted as short date format and time format, from the control panel.
ExamplesSaleDate
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 sales sale date: " & objSO.CurrentSale.SaleDate, vbInformation + vbOKOnly, "SuperCOM"
else
MsgBox "Unable to connect to database"
end if
Set objSO = Nothing
See Also