Vous n’avez pas trouvé la réponse que vous recherchez ?
Posez votre questionIf OldStr = Str Then ' ====>>> si titi = toto
Return "Chaine identique"
OldStr = Str ' =====>>> alors titi = toto !!!!
Else ' =====>>> sinon
Return "Chaine differente"
OldStr = Str ' ====>>> titi = toto !!!
End If
toto = "identique"
If oldsgtr <> str then
toto = "differente"
OldStr = Str
End If
return "chaîne " + toto
Module Module1 Public OldStr As String Public Function test(ByVal Str As String) As String If OldStr = Str Then Return "Chaine identique" Else OldStr = Str Return "Chaine differente" End If End Function
1 juin 2015 à 19:24