Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The MaxSelCount and NoncontinuousSelection properties are ignored when setting this property.

Example

Code Block
 // Get the current selection 
SelDates = Get_Property(@Window:".OLE_DATEPICKER", "OLE.Selection") 

 // Set the selection to today's date 
Set_Property(@Window:".OLE_DATEPICKER", "OLE.Selection", Date()) 

 // Clear the current selection 
Set_Property(@Window:".OLE_DATEPICKER", "OLE.Selection", "")

...