Private Sub ColDelCmd_Click()
For i = 0 To ListBox2.ListCount - 1
If i <ListBox2.ListCount Then
If ListBox2.Selected(i) Then'Selected属性为判断listbox是否被选中
ListBox2.RemoveItem (i)'removeitem为移除改list
i = i - 1
End If
End If
Next
End Sub
MSDN刚查了一下,没有全部删除的API么可以自己写个循环干掉
int a = m_ListBox.GetCount()//总列数
for(int i=0i<ai++)
{
m_ListBox.DeleteString(i)//删除ListBox 当前列
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)