VB 如何清除combobox里的指定选项
发布网友
发布时间:2024-05-07 00:24
我来回答
共3个回答
热心网友
时间:2024-11-03 22:28
vb2003的是
Combo1.Items.Clear()\\清除所有
ComboBox1.Items.Remove("艺术类")\\删除艺术类
vb6.0的不知道是怎样的。可以试试
Combo1.ClearItems()
Combo1.RemoveItems("艺术类")
热心网友
时间:2024-11-03 22:28
Private Sub Command1_Click()
Combo1.RemoveItem Combo1.ListIndex
End Sub
热心网友
时间:2024-11-03 22:29
Combo1.RemoveItem Combo1.ListIndex
热心网友
时间:2024-11-03 22:28
vb2003的是
Combo1.Items.Clear()\\清除所有
ComboBox1.Items.Remove("艺术类")\\删除艺术类
vb6.0的不知道是怎样的。可以试试
Combo1.ClearItems()
Combo1.RemoveItems("艺术类")
热心网友
时间:2024-11-03 22:28
Private Sub Command1_Click()
Combo1.RemoveItem Combo1.ListIndex
End Sub
热心网友
时间:2024-11-03 22:29
Combo1.RemoveItem Combo1.ListIndex