A. 框架 B. 组合框 C. 复选框 D. 列表框
A. List1.list B. List1.listCount C. List1.Index D. List1.Text
A. List1.RemoveItem (List1.ListIndex) B. List1.RemoveItem List1.Columns(List1.ListIndex) C. List1.Clear List1.ListIndex D. List1.Clear List1.Columns(List1.ListIndex)
A. 无 B. 0 C. 1 D. 2
A. 计时器的Enabled属性为False,会暂停计时器的计时操作 B. 运行时计时器不可见,所以其位置和大小无关紧要 C. 触发计时器Timer事件的时间间隔可人为设定 D. 计时器的Interval属性以秒为单位
A. Combo1.ListIndex = 3 B. Combo1.Index = 3 Combo1.ListIndex = 2 D. Combo1.Index = 2
A. Print Combo1.ListIndex B. Print Combo1.Index C. Print Combo1.ListCount D. Print Combo1.Count
A. List1.AddItem a B. For i = 0 To UBound(a) - 1 List1.AddItem a(i), 0 Next i C. For i = 0 To UBound(a) – 1List1.List(i)=a(i)Next i D. For i = 0 To UBound(a) - 1 List1.AddItem a(i) Next i
A. Enabled属性为True和Interval属性为0 B. Enabled属性为False和Interval属性为0 C. Enabled属性为True和Interval属性非0 D. Enabled属性为False和Interval属性非0
A. List1.List(ListCount-1) B. List1.List(List1.ListCount-1) C. List1.List(ListCount) D. List1.List(List1.ListCount)