Hello,
when leaving a TsDateEdit with an invalid date entered an exception is raised.
To my understanding that should not be the case when TsDateEdit.CheckOnExit is set to false.
The problem is now, that CheckOnExit is defined in TsCustomDateEdit as:
Code:
property CheckOnExit: boolean read GetCheckOnExit write FCheckOnExit default False;
and GetCheckOnExit looks like:
Code:
function TsCustomDateEdit.GetCheckOnExit: boolean;
begin
Result := True;
end;
Is this a bug or a feature?
Greetings,
Clemens