This is a tiny bit of code that will loop and display each letter in a string in VB.net.

Here’s the bit of code you’ll need:
Dim letters As String = "Hello World"
For Each singleletter As Char In letters
MsgBox(singleletter)
Next
That is a quick and easy solution.