Fired when the user changes the date.

Parameters

ParameterDescription
DateThe new date

Remarks

The DateChange event is fired when the user changes the current date using the provided calendar. The Date parameter contains the new date in OI's internal date format.

Example

Transfer Param1 to Date 

// Notify the user that they can't modify past appointments 
If Date LT Date() then 
   Msg(@Window, "You cannot modify past appointments") 
end
  • No labels