Private Sub Command1_Click()
dim a,b as string
a=inputbox("输入字符串")
For i = 1 To Len(a)
b=b & chr(asc(mid(a,i,1))+1)
next
msgbox b
next
Private Sub Command1_Click()
dim a,b as string
a=inputbox("输入字符串")
For i = 1 To Len(a)
b=b & chr(asc(mid(a,i,1))+1)
next
msgbox b
next