A . button.enableActionEvents();
B . button.addActionListener(anActionListener);
C . button.enableEvents(true);
D . button.enableEvents(AWTEvent.ACTION_EVENT_MASK);
[单选题]在JAVA中,下列()代码段允许按钮注册一个action事件。A . button.enableActioinEvents();B . button.addActionListener(anActionListener);C . button.enableEvents(true);D . button.enableEvents(AWTEvent.ACTION_EVENT_MASK);
[单选题]在窗体中有一个标签Lbl和一个命令按钮Commandl,事件代码如下: Option Compare Database Dim a As String*10 Pfivae Sub Commandl_Click() a=“1234” b=Len(A) Me.Lbl.Caption=b End Sub 打开窗体后单击命令按钮,窗体中显示的内容是( )。A.4B.5C.10D.40
[单选题]在窗体上画一个按钮,然后编写如下事件代码。单击按钮,输出为 ______。 Private Function fun3(x As Integer) Static t As Integer t = t + 3 t = t + x fun3 = t End Function Private Sub Commandl Click() Dim a As Integer, b As Integer, c As Integer a = 2 : b = 1 c = fun3 (A)c = fun3 (B)Pr
[单选题]( 33 )在窗体上有一个命令按钮 Commandl ,编写事件代码如下:Private Sub Command1_Click()D.im x As Integer, y As Integerx = 12: y = 32C.all Proc(x, y)D.ebug.Print x; yE.nd SubPublic Sub Proc(n As Integer, ByVal m As Integer)n = n Mod 10m = m Mod 10E.nd Sub打开窗体运行后,单击命令按钮,立即窗
[单选题]34 )在窗体上有一个命令按钮 Commandl ,编写事件代码如下:Private Sub Commandl_Click()D.im d1 As DateD.im d2 As Datedl = #12/25/2009#d2 = #1/5/2010#MsgBox DateDiff( ” ww ” , d1, d2)E.nd Sub打开窗体运行后,单击命令按钮,消息框中输出的结果是A. ) 1B. ) 2C. ) 10D. ) 11
[单选题]( 32 )在窗体上有一个命令按钮 Commandl ,编写事件代码如下:Private Sub Commandl_Click()D.im y As Integery = 0D. oy = InputBox (" y= ")If (y Mod 10) + Int(y / 10) = 10 Then Debug.Print y ;Loop Until y = 0E.nd Sub打开窗体运行后,单击命令按钮,依次输入 10 、 37 、 50 、 55 、 64 、 20 、 28 、 19 、
[试题]( 10 )在窗体上有一个命令按钮 Commandl ,编写事件代码如下:Private Sub Command1_Click()D.im a(10), p(3) As Integerk = 5F.or i = 1 To 10a(i) = i * iNext iF.or i = 1 To 3p(i) = a(i * i)Next iF.or i = 1 To 3k = k + p(i) *2Next iMsgBox kE.nd Sub打开窗体运行后,单击命令按钮,消息框中输出的结果是 ( 10 )
[单选题]在窗体上有一个命令按钮Commandl,编写事件代码如下:Private SuB cormmandl_Click()D.im y As Integery=0D.oy=Input Box(“y=”)IF(y Mod 10)+Int(y/10)=10 Then DeBug.print y;Loop Until y=0E.nd SuB打开窗体运行后,单击命令按钮,依次输入10、37、50、55、64、20、28、19、-19、0,立即窗口上输出的结果是A.37 55 64 28 19 19B.10 5
[单选题]在窗体上有一个命令按钮Commandl,编写事件代码如下:Private SuB commandl_Click()D.im d1 As DateD.im d2 As Dated1=#12/25/2009#d2=#1/5/2010#MsgBox DateDiFF(“WW”,d1,d2)E.nd SuB打开窗体运行后,单击命令按钮,消息框中输出的结果是A.1B.2C.10D.11
[单选题]在窗体上有一个命令按钮Commandl,编写事件代码如下:Private SuB commandl_Click()D.im x As Integer,y As Integerx=12:y=32C.all Proc(x,y)OeBug.Print x;yE.nd SuBPuBlic SuB Proc(n As Integer,Byval m As Integer)n=n Mod 10m=m Mod 10E.nd SuB打开窗体运行后,单击命令按钮,立即窗口上输出的结果是A.2 32B.12 3C.