【单选题】P10.窗体上有一个名为text1的文本框和一个名为command1的命令按钮,事件过程如下: Private Sub command1_click() Dim I As Integer,n As Integer For j=0 to 50 i=i+3 n=n+1 If i>10 Then Exit For Next j Text1=str(n) End Sub 程序运行时单击命令按钮,文本框中显...
【单选题】窗体上有一个名为text1的文本框和一个名为command1的命令按钮,事件过程如下: Private Sub command1_click() Dim i As Integer, n As Integer For j=0 to 50 i = i + 3 n = n + 1 If i>10 Then Exit For Next j text1 = str(n) End Sub 程序运行时单击命令按...
【简答题】窗体上有一个名为 text1 的文本框和一个名为 command1 的命令按钮,事件过程如下:Private Sub command1_click()Dim i As Integer, n As IntegerFor j=0 to 50i=i+3n=n+1If i>10 Then Exit ForNext jtext1=str(n)End Sub程序运行时单击命令按钮,文本框中显示的值是( )。...