没有搜到到结果?点击这里求解答/求资源。
【判断题】
可以通过Clear删除列表框选中项目

正确
错误
【单选题】
不能通过()删除列表框表项。

RemoveItem方法
Clear方法
Text属性
List属性
【单选题】
列表框列表内容是通过()属性设置

List
Columns
Text
Index
【单选题】
若要获得列表框列表数目,可通过访问( )实现。

List
ListIndex
ListCount
Text
【判断题】
Visual Basic提供了列表框控件,当列表框项目较多、超过了列表框长度时,系统会自动在列表框边上加一个滚动条。

正确
错误
【单选题】
列表框列表数目可以通过以下哪个属性值获得?

ListIndex
ListCount
Count
Index
【判断题】
列表框Columns属性可以用来设置列表框多列显示。

正确
错误
【单选题】
下列选项( )可以用来检索下拉列表框中被选项目的索引号。

selectedIndex
options
length
indexNumber
【单选题】
若要清除列表框所有项目,则可使用方法是()。

Add
Clear
AddItem
Remove
【单选题】
为了使drive11驱动器列表框、dir1目录路径列表框和file1文件列表框能同步协调工作,需要在()。

drive1Change事件过程中加入drive1.Drive=dir1.Path,在dir1Change事件过程中加入dir1.Path=file1.Path代码
drive1Change事件过程中加入dir1.Path=drive1.Drive,在dir1Change事件过程中加入file1.Path=dir1.Path代码
dir1Change事件过程中加入dir1.Path=drive1.Drive.Drive,在file1Click事件过程中加入file1.Path=file1.FileName代码
dir1Change事件过程中加入dir1.Path=drive1.Drive,在file1Click事件过程中加入file1.Path=dir1.Path代码