Nun, wenn Du einen Wert auf 0 Prüfen willst,
kanst Du das mit isZero aus der Math
Unit testen.
Hier ein Auszug aus der Hilfe:
Zitat:
Unit
Math
Category
Arithmetic routines
function IsZero(const A: Single; Epsilon: Single = 0): Boolean; overload;
function IsZero(const A: Double; Epsilon: Double = 0): Boolean; overload;
function IsZero(const A: Extended; Epsilon: Extended = 0): Boolean; overload;
Description
Use IsZero to test whether the value specified by AValue is zero, or differs from zero by at most Epsilon.
Grüße
Klaus