Bonjour,
J'ai une fonction de calcul dans delphi 7, codée comme suit :
1 2 3 4 5 6
| Function Calcul1(ds3,ds4 : TDataset) : Integer;
begin
result :=
(ds3.fieldbyname('tot_poid').AsInteger)-(ds4.FieldByName('poid_livr').AsInteger);//pour me donne le pois rest
(ds3.fieldbyname('tot_poid').AsInteger)/(ds4.FieldByName('poid_rot').AsInteger);//pour me donne les tranche de pois a livrer
end; |
Quand je compile il me donne ce message d'erreur :
[Error] vente.pas(244): Statement expected, but expression of type 'Extended' found
Partager