Unplanned
Last Updated: 17 Apr 2024 14:39 by ADMIN
Applications hangs when using custom format containing one part ("ddd" or "dddd"). 
Unplanned
Last Updated: 28 Aug 2023 08:18 by ADMIN
In this scenario, the FreeFormDateTime mask type is used and the ShowCheckBox property is set to true. When the user clears the date and start type and in the process of entering the date, press Left or Right key arrows, the CheckBox inside is focused which triggers the validation of the control.
Unplanned
Last Updated: 19 Sep 2023 12:40 by ADMIN
In this particular case, we are using the SetToNullValue() method. To reproduce this behavior we can type a valid date in the editor area. Press the tab key to move the focus out of the control. Call the SetToNullValue() method which will set the Value property to null. Focus again on the control and type the same date again. When we tab out of the control, the date is valid and will be shown in the editor area. However, the Value property remains empty.
Unplanned
Last Updated: 27 Feb 2024 13:02 by ADMIN
Unplanned
Last Updated: 01 Mar 2024 12:26 by ADMIN

The selected date is 2024 Feb 29. A custom date format is applied to the control:

this.radDateTimePicker1.Format = DateTimePickerFormat.Custom;
this.radDateTimePicker1.CustomFormat = "yyyy";

When trying to change the date, an ArgumentOutOfRangeException exception is thrown.