Code : Tout sélectionner
$tot=0
while 1
$retot=$tot+1
MsgBox(0,"",$retot)
wend
Code : Tout sélectionner
$tot=0
while 1
$retot=$tot+1
MsgBox(0,"",$retot)
wend
Code : Tout sélectionner
$i = 0
While $i <= 10
MsgBox(0, "Value of $i is:", $i)
$i = $i + 1
WEnd
Code : Tout sélectionner
$tot = 0
While 1
MsgBox(0, "la valeur de $tot vaut :", $tot)
$tot = $tot + 1
WEnd
Code : Tout sélectionner
Dim $retot
while 1
$retot += 1
MsgBox(0,"",$retot)
wend