【单选题】在窗体中添加一个名称为 Command1 的命令按钮,然后编写如下程序: Public x As Integer Private Sub Command1_Click( ) x=10 Call s1 Call s2 MsgBox x End Sub Private Sub s1( ) x=x+20 End sub Private Sub s2( ) Dim x As Integer x=x+20 ...
【简答题】在窗体中添加一个名称为 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+2...