Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

Public Class Form1

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)


Handles Button1.Click
Dim all As String = TextBox1.Text
Dim tracker As String = ""

For Each c As Char In all


tracker = tracker.ToString + c.ToString + " = " + Asc(c).ToString + " "

Next

Label2.Text = tracker
End Sub
End Class

You might also like