'在字符串表达式中“+ ”与“&”功能一样,加val()将字符串转为数字Private Sub Command1_Click() Text1 = 2 Text2 = 3 Text3 = val(Text2) + val(Text1) End Sub