单项选择题

列表框的( )属性表示选中选项的序号。

A.List
B.ListCount
C.ListIndex
D.Columns
<上一题 目录 下一题>
热门 试题

单项选择题
要把名为Form1的窗体从内存中卸载,应使用语句( )。
A.Form1.Unload
B.Close Form1
C.Form1.End
D.Unload Form1
单项选择题
以下有关数组定义的语句序列中,错误的是( )。
A.Static arr1(3) arr1(1)=100 arr1(2)="Hello" arr1(3)=123.45
B.Dim arr2() AsInteger Dim size As Integer Private Sub Command2_Click () size=InputBox("输入:") ReDim arr2(siz …… EndSub
C.Option Base 1 Private Sub Command3 Click() Dim art3(3) As Integer …… End Sub
D.Dim n As Integer Private Sub Command4 Cliok() Dim arr4(As Integer …… End Sub
相关试题
  • 在窗体上有一个计时器控件Timer1和一个标...
  • 程序段如下,当发生Form_Click事件时,窗...
  • 当Form1_Click事件发生时,窗体上显示的...
  • 在窗体上画一个名称为Command1的命令按钮...
  • C