在窗体中添加一个命令按钮(名为Command1) 和一个文本框(名为text1) ,然后编写如下事件过程: Private Sub Command1_C1ick( ) Dim x As Integer, y As Integer, z As Intege

admin2010-06-10  21

问题 在窗体中添加一个命令按钮(名为Command1) 和一个文本框(名为text1) ,然后编写如下事件过程:
Private Sub Command1_C1ick( )
Dim x As Integer,  y As Integer, z As Integer
x=5:y=7:z=0
Me!Text1=""
Call p1(x,y,z)
Me!Text1=z
End Sub
Sub p1(a As Integer,b As Integer,c As Integer)
C=a+b
End Sub
打开窗体运行

选项

答案12

解析  在VBA中,默认情况下,参数是按地址传递(ByReF),结果会返回。本题中2的值等于x+y,所以文本框中显示的内容为12。
转载请注明原文地址:https://kaotiyun.com/show/fzup777K
0

最新回复(0)