Code : Tout sélectionner
If (Not(0)) And a$
Debug "bug !"
Else
Debug "ok !"
EndIf
If Not(0) And a$
Debug "bug !"
Else
Debug "ok !"
EndIf
If Not(0) And 1
Debug "ok !"
Else
Debug "bug !"
EndIf
Code : Tout sélectionner
ok !
bug !
ok !
Lio
