原贴:http://community.csdn.net/Expert/topic/4299/4299320.xml?temp=7.253665E-02在文本框中怎样把输入的字母转换成数字并保存在一个变量里(比如字母用相应的Ascii码代替)?
strNumber = ""
For i = 1 To Len(strSource)
    strNumber = strNumber & Asc(Mid(strSource, i, 1))
Next i我想把每个Ascii码依次相加,该如何做?
比如:david (100+97+118+105+100=520)