If we got a string in the middle of which
we have a null character, chr(0), the textBox will not display anything after this null cause it thinks its's the end of the string. So , we can force...
For i = 1 to len(MyStr)
Text1.Text = Text1.text & Chr(ArrayBytes(i))
Next i
Can I do it faster ?
