【单选题】在窗体中有一个标签Lb1和一个命令按钮Command1,事件代码如下: Option Compare Database Dim a As String*10 Private Sub Command1 Click() a='1234' b=Len(A) Me.Lb1.Caption=b End Sub 打开窗体后单击命令按钮,窗体中显示的内容是( )。
【单选题】( 33 )在窗体中有一个命令按钮 command1 和一个文本框 text1, 编写事件代码如下: Private sub command1_click() For i=1 to 4 X=3 For j=1 to 3 For k=1 to 2 X=x+3 Next k Next j Next i Text1.value=str(x) End sub 打开窗体运行后,单击命令按钮,文本框 text...
【单选题】窗体中有命令按钮Command1,事件过程如下: Public Function f(x As Integer)As Integer Dim y As Integer x=20 y=2 f=x*Y End Function Private Sub Command 1_Click() Dim y As Integer static x As Integer x=10 y=5 y=f(x) Debug...