Registriert seit: 18. Aug 2004
Ort: Edewecht
712 Beiträge
Delphi 5 Professional
|
Re: String->Smallint
1. Dez 2004, 10:02
Zitat von LoL:
mein probelm ist ich will von Int was von Typ smallint abziehen und das geht nit
Warum sollte das nicht gehen?
Delphi-Quellcode:
procedure TForm1.Button1Click(Sender: TObject);
var
LI: Integer;
SI: Smallint;
begin
LI := 6;
SI := 12;
SI := SI - LI;
ShowMessage(IntToStr(SI));
LI := LI + SI;
ShowMessage(IntToStr(LI));
end;
Ciao, Sprint.
"I don't know what I am doing, but I am sure I am having fun!"
|