引用组合框ComboBox1 最后一个数据项应使用代码_________。A.ComboBox1.Items(ComboBox1.Items.Count - 1)B.ComboBox1.Items(ComboBox1.Items.Count)C.ComboBox1.Items(Count)D.ComboBox1.Items(Count - 1)E.ComboBox1.Items(ComboBox1.Items.Count.Last)

引用组合框ComboBox1 最后一个数据项应使用代码_________。

A.ComboBox1.Items(ComboBox1.Items.Count - 1)

B.ComboBox1.Items(ComboBox1.Items.Count)

C.ComboBox1.Items(Count)

D.ComboBox1.Items(Count - 1)

E.ComboBox1.Items(ComboBox1.Items.Count.Last)


参考答案和解析
ComboBox1.Items(ComboBox1.Items.Count - 1)

相关考题:

在统计数据的表现形式中,以下说法正确的是( )。A.一个基本数据项是由多个记录组成的B.一个文件是由多个组合数据项组成的C.一个文件是由多个记录组成的D.一个基本数据项是由多个组合数据项组成的

引用列表框(Listl)最后一个数据项应使用的表达式是( )。A.Listl.List(List..ListCount)B.Listl.List(Listl.ListCount-1)C.Listl.List(ListCount)D.Listl.List(ListCount-1)

引用列表框(List1) 最后一个数据项应使用A.List1.List(List1.ListCount)B.List1.List(List.ListCount-1)C.Lisl1.List(ListConut)D.List1.List(ListCount-1)

假如列表框(List1)有4个数据项,要把最后一个数据项“china”删除的语句是( )。 A. 移去第一项B. 移去最后一项C. 程序无操作D. 程序出错

引用列表框ListBox1最后一个数据项应使用()。 A、ListBox1.Items(ListBox1.Items.Count)B、ListBox1.Items(ListBox1.Items.Count-1)C、ListBox1.TextD、ListBox1.Items(ListBox1.SelectedIndex)

在VB中向组合框中增加数据项所采用的方法为【 】 。

在窗体中使用一个文本框(名为n)接受输入的值,有一个命令按钮rail,事件代码如下:

引用列表框(List1)最后一个数据项应使用的语句是()。 A、List1.List(List1.ListCount)B、List1.List(List1.ListCount-1)C、List1.List(ListCount)D、List1.List(ListCount-1)

开发用户界面如下图所示的应用程序:功能说明:该界面是一个教师信息录入界面。用户在编辑框(Edit1)中输入姓名,利用单选按钮(RadioGroup1)指定性别,利用组合框(ComboBox1)选择或直接输入所在系,利用列表框(ListBox1)指定职称。当输入完上述信息后,单击“确定”按钮,教师信息将显示在右边的 Memo1编辑窗口中。提示:在组合框和列表框中可以预置少量测试数据。

在代码中引用一个控件时,应使用控件的()属性。ACaptionBNameCTextDIndex

假如列表框(List1)有四个数据项,那么把数据项“China”添加到列表框的最后,应使用()语句。A、List1.AddItem3,"China"B、List1.AddItem"China",List1.List1Count-1C、List1.AddItem"China",3D、List1.AddItem"China"

设某表单上有一个页框控件,该页框控件的PageCount属性值在表单的运行过程中可变(即页数会变化)。如果要求在表单刷新时总是指定页框的最后一个页为活动页,则可在页框控件的refresh方法代码中使用语句:This.()=This.PageCount

()方法的功能是向列表框或组合框控件添加一个数据项。A、ShowB、RemoveItemC、HideD、AddItem

对于表单的Load、Activate和Init这三个事件来说,()事件的处理代码中不能引用表单中的对象,()事件最后一个被触发。

假如列表框(List1)有四个数据项,那么把数据项“China”添加到列表框的最后,应使用语句()。A、List1.AddItem 3, "China"B、List1.AddItem "China", List1.List1Count-1C、List1.AddItem "China", 3D、List1.AddItem "China", List1.List1Count

假如列表框(List1)有四个数据项,把数据项“数据库原理”添加到列表框的最后,应使用()语句。A、List1.AddItem“数据库原理”,List1.ListCountB、List1.AddItem“数据库原理”,List1.ListCount-1C、List1.AddItem3,“数据库原理”D、List1.AddItem“数据库原理”,3

一个BOM文件,至少应包括3个数据项:即()。A、标识代码B、需求量C、层次码D、预测量

单选题在代码中引用一个窗体控件时,应使用的控件属性是(  )。ACaptionBNameCTextDIndex

单选题引用ListBox(列表框)最后一个数据项应使用()语句AListBox1.Items[ListBox1.Items.Count]BListBox1.Items[ListBox1.SelectedIndex]CListBox1.Items[ListBox1.Items.Count-1]DListBox1.Items[ListBox1.SelectedIndex-1]

单选题假如列表框(List1)有四个数据项,那么把数据项“China”添加到列表框的最后,应使用()语句。AList1.AddItem3,ChinaBList1.AddItemChina,List1.List1Count-1CList1.AddItemChina,3DList1.AddItemChina

单选题假如列表框(List1)有四个数据项,那么把数据项“China”添加到列表框的最后,应使用语句()。AList1.AddItem 3, ChinaBList1.AddItem China, List1.List1Count-1CList1.AddItem China, 3DList1.AddItem China, List1.List1Count

单选题引用集合中的数据项需要使用()方法。AClearBRemoveCContainsDItem

单选题引用列表框的最后一项应使用()。AList1.List(List1.ListCount-1)BList1.List(List1.ListCount)CList1.List(ListCount)DList1.List(ListCount-1)

填空题对于表单的Load、Activate和Init这三个事件来说,()事件的处理代码中不能引用表单中的对象,()事件最后一个被触发。

单选题引用ListBox(列表框)当前被选中的数据项应使用()语句AListBox1.Items[ListBox1.Items.Count]BListBox1.Items[ListBox1.SelectedIndex]CListBox1.Items[ListBox1.Items.Count-1]DListBox1.Items[ListBox1.SelectedIndex-1]

单选题在代码中引用一个控件时,应使用控件的()属性。ACaptionBNameCTextDIndex

单选题能够将组合框Combo1中最后一个数据项删除的语句为(  )。ACombo1.RemoveItem Combo1.ListCountBCombo1.RemoveItem Combo1.ListCount-1CCombo1.RemoveItem Combo1.ListIndexDCombo1.RemoveItem Combo1.ListIndex-1

多选题一个BOM文件,至少应包括3个数据项:即()。A标识代码B需求量C层次码D预测量