Bonjour,
la seule chose que je ne comprends pas dans le code suivant est le ",32" situé à la cinquième ligne, à quoi correspond t il?
MERCI
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11 Sub Calcul2() Dim Montant As Integer Montant = 10 Produit2 Montant, 2 MsgBox "Montant = " & Montant, 32 End Sub Sub Produit2(ByRef Nb As Integer, n As Integer) Nb = Nb * n End Sub
Partager