Registriert seit: 26. Mai 2004
3.159 Beiträge
|
AW: Schiffe versenken "Kein gültiger Integerwert"
12. Apr 2013, 21:28
Naja, was glaubst du denn was StrToInt macht?!
Delphi-Quellcode:
var
s : string;
i : Integer;
begin
s := '1';
i := StrToInt(s); // Das hier funktioniert
s := 'Delphi';
i := StrToInt(s); // Das klappt nicht
end;
»Remember, the future maintainer is the person you should be writing code for, not the compiler.« (Nick Hodges)
|