How to clear combo box contents in vb.net
vb.net
Solution
Try using `combobox.Items.Clear()`
Problem
If for textbox it is `textbox1.clear`, etc. What is the equivalent for combobox to clear the value.
vb.net
Try using `combobox.Items.Clear()`
If for textbox it is `textbox1.clear`, etc. What is the equivalent for combobox to clear the value.