设窗体上有一个名称为List1的列表框,并有若干列表项。下面语句中不能在所有列表项之后追加一个列表项的是____________。
A: List1.List(List1.ListCount) = "VB程序"
B: List1.AddItem "VB程序" , List1.ListCount
C: List1.AddItem "VB程序"
D: List1.List(List1.ListCount – 1) = "VB程序"
A: List1.List(List1.ListCount) = "VB程序"
B: List1.AddItem "VB程序" , List1.ListCount
C: List1.AddItem "VB程序"
D: List1.List(List1.ListCount – 1) = "VB程序"
举一反三
- 设窗体上有一个名称为List1的列表框,并有若干列表项。下面语句中不能在所有列表项之后追加一个列表项的是____________。 A: List1.List(List1.ListCount) = "VB程序" B: List1.AddItem "VB程序" , List1.ListCount C: List1.AddItem "VB程序" D: List1.List(List1.ListCount – 1) = "VB程序"
- 设窗体上有一个名称为List1的列表框,并有若干列表项。下面语句中不能在所有列表项之后追加一个列表项的是 A: List1.List(List1.ListCount-1)="VB程序" B: List1.List(List1.ListCount)="VB程序" C: List1.AddItem"VB程序",List1.ListCount D: List1.AddItem"VB程序"
- 引用列表框List1 最后一个数据项应使用代码_________。? List1.List(ListCount - 1)|List1.List(ListCount)|List1.List(List1.ListCount)|List1.List(List1.ListCount - 1)
- 获取列表list=[1,2,3,4]第一个元素正确的方法是()。 A: list[-1] B: list[1] C: list[0] D: list[[1]]
- 已知定义一个列表 list = [1,2,3,4,5],下面哪种操作会导致越界? A: list[0] B: list[5] C: list[-1] D: list[1]