Re: Fastcode CompareText B&V



Hi

ValidateAll did not validate the first 4 functions = RTL

for K := 4 to FunctionSelectionRadioGroup.Items.Count-1 do
begin
FunctionSelectionRadioGroup.ItemIndex := K;
CompleteValidate;
Update;
end;

changed that to

for K := 0 to FunctionSelectionRadioGroup.Items.Count-1 do
begin
FunctionSelectionRadioGroup.ItemIndex := K;
CompleteValidate;
Update;
end;

Best regards
Dennis Kjaer Christensen


.