salut tous j'ai un petit probleme sur un calcul avec vigule
voici mon code
chiffre sans virgule le code marche super mais avec virgule problème d'occurance
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13 procedure TAjoutPaiement.SpeedButton2Click(Sender: TObject); var som:Double; cot:Double; pai:Double; begin som:=StrToFloat(Sommes.Text); //Prix cot:=StrToFloat(cotisation.Caption); //Prix pai:=StrToFloat(Paiement.Caption); //Prix paie:=pai+som; paiementfini.caption:=floattostr(paie); PrixReste:=cot-(pai+som); reste.caption:=floattostr(PrixReste);
Partager