问题
填空题
在窗体中有两个文本框分别为Text1和Text2,一个命令按钮Command1,编写如下两个事件过程:
Private Sub Command1_Click( )
a = Text1.Value + Text2.Value
MsgBox a
End Sub
Private Sub Form_Load( )
Text1.Value = “”
Text2.Value = “”
End Sub
程序运行时,在文本框Text1中输入78,在文本框中Text2输入87,单击命令按钮,消息框中输出的结果为()。
答案
参考答案:7887