TheCrystal9
New member
- Joined
- Aug 4, 2010
- Messages
- 4
- Programming Experience
- Beginner
Good day everyone ..
I have a combobox, I set its "drop down style" property to "drop down list"
Then I wanted when th user clicks on the form the combobox becomes unselected so i wrote this code:
But it's not working, if I clicked on the form, the combobox is still selected, so how to solve this problem ?
I have a combobox, I set its "drop down style" property to "drop down list"
Then I wanted when th user clicks on the form the combobox becomes unselected so i wrote this code:
PHP:
Dim s As String
s = ComboBox1.Text
ComboBox1.Text = ""
ComboBox1.Text = s
But it's not working, if I clicked on the form, the combobox is still selected, so how to solve this problem ?