VB问题~~~~~List列表中,删除选中的Item,怎么写?谢谢

如题所述

ListBox1.Items.Remove(ListBox1.SelectedItem)
温馨提示:答案为网友推荐,仅供参考
第1个回答  2006-04-13
dim index as integer
index=ListView1.SelectedItem.Index
ListView1.ListItems.Remove(index)
相似回答