The 'Total' field is of a number data type if I leave out the 'IntToStr' is says Incompatible types : string and integer. The function is part of another unit.
Function TAddAnimal.Dead(idead: Integer) : Integer;
begin
Result := fTotal - iDead;
end;
procedure TfrmDead.Button1Click(Sender: TObject);
begin
ADOQuery1.Active := False ;
ADOQuery1.SQL.Text := 'select * from Animals where Name = "'+LabeledEdit1.Text+'"';
ADOQuery1.Active := True;
sName := ADOQuery1.FieldByName('Name').Value ;
sAfriName := ADOQuery1.FieldByName('African Name').Value ;
sType := ADOQuery1.FieldByName('Type').Value ;
iTotal := ADOQuery1.FieldByName('Total').Value ;
tAnimal := TAddAnimal.Create(sName, sAfriName, sType, iTotal);
iDead := SpinEdit1.Value;
ADOQuery1.Active:= false;
ADOQuery1.SQL.Text:= 'Update Animals set Total = Total - "'+IntToStr (tAnimal.Dead (iDead))+'" where Name = "'+LabeledEdit1.text+'"';
ADOQuery1.ExecSQL;

ADOQuery1.SQL.Text:= 'Update Animals set Total = Total - '+IntToStr(tAnimal.Dead (iDead))+' where Name = "'+LabeledEdit1.text+'"';– RRUZ Oct 6 '12 at 17:21tAnimal.Deadmethod, why you no pass the value of theiDeaddirectly (IntToStr(iDead))? – RRUZ Oct 6 '12 at 17:38