Registriert seit: 29. Mai 2002
37.621 Beiträge
Delphi 2006 Professional
|
Re: String->Smallint
1. Dez 2004, 10:01
Zitat von LoL:
mein probelm ist ich will von Int was von Typ smallint abziehen und das geht nit
Geht:
Delphi-Quellcode:
procedure TForm1.Button1Click(Sender: TObject);
var
i: Integer;
si: Smallint;
begin
i := 1259;
si := 10;
ShowMessage(IntToStr(i-si));
end;
Michael Ein Teil meines Codes würde euch verunsichern.
|