Voici mon code :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
ForEach str AsStringIn TabStr
  Dim ress AsInteger = Val("&H" & str)
  MsgBox("Valeur décimal : " & ress)
  Dim thecar AsChar = Convert.ToChar(ress)
  MsgBox("Valeur ASCII : " & thecar)
  toto = toto & thecar.ToString
Next
MsgBox("toto : " & toto)
Mais le problème est que toto m'affiche que le premier caractère...

Comment faire pour tout avoir ?

Merci a tous.