在VB中,AddItem是ListBox控件的一個方法,用于向列表框中添加項。
語法: ListBox.AddItem(item, index)
參數說明:
示例:
ListBox1.AddItem "Item 1"
ListBox1.AddItem "Item 2"
ListBox1.AddItem "Item 3", 1
以上代碼會向名為ListBox1的列表框中添加三個項,"Item 1"和"Item 2"會按順序添加到列表框的末尾,"Item 3"會被插入到索引為1的位置。