I want to clear a form to add a new record but this:
cboCombo.text = ""
gives me an error saying that text property is read only. How can I clear this?
Printable View
I want to clear a form to add a new record but this:
cboCombo.text = ""
gives me an error saying that text property is read only. How can I clear this?
Try Combo1.Text = ""
That's the same thing.. Try this.
Code:Combo1.ListIndex = -1