Sub Globals
'Declare the global variables here.
End Sub
Sub App_Start
Form1.Show
End Sub
Sub Button1_Click
c=""
name=StrToUpper(textbox1.Text)
For a = 0 To StrLength(name) -1
b=StrAt(name,a)
c=c & Asc(b)-64
Next
label1.Text=c
End Sub