Ich hab das Problem schon gelöst.
Das TDateTime ist tatsächlich ein Float
Delphi-Quellcode:
low_value := Strtotime(tabelle.Form1.StringGrid1.Cells[1,1]);
for j := 1 to X do
begin
if low_value > Strtotime(tabelle.Form1.StringGrid1.Cells[1,j])
then low_value := Strtotime(tabelle.Form1.StringGrid1.Cells[1,j]);
if high_Value < Strtotime(tabelle.Form1.StringGrid1.Cells[1,j])
then high_Value := Strtotime(tabelle.Form1.StringGrid1.Cells[1,j]);
end;