在窗体中添加一个名称为 Command1 的命令按钮 ,然后编写如下程序
18 查阅
在窗体中添加一个名称为 Command1 的命令按钮 ,然后编写如下程序 :Public x As IntegerPrivate Sub Command1_Click( ) x=10 Call s1 Call s2 MsgBox xEnd SubPrivate Sub s1( ) x=x+20End subPrivate Sub s2( ) Dim x As Integer x=x+20End Sub 窗体打开运行后 ,单击命令按钮 ,则消息框的输出结果为( )
- A.10
- B.30
- C.40
- D.50
参考答案: