Zitat von
Fox007:
So gez auch
Code:
function IsStrANumber(const S: string): Boolean;
begin
Result := True;
try
StrToInt(S);
except
Result := False;
end;
end;
Hallo!
Viell. kann mir ja nochmal jmd. helfen...Wenn ich den Code von oben nehm, bricht er an der Stelle " StrToInt(S); " ab sobald S: keine Zahl ist. Ist ja auch richtig so bloss soll ja keine Fehlermeldung kommen, sondern eben ein irgend ne Warnung etc....