Combobox help

I am having some troubles with a combobox (cb_dropdown) not de-selecting after it is disabled or the focus has changed. In other words the selection highlight appears to be stuck on...Unless I click in the text area of the combobox...

winXP Pro
Python version 2.4
wxPython version 2.6.1.0

Are there are methods to 'force' the highlight to turn off?

···

--
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.323 / Virus Database: 267.8.8/35 - Release Date: 6/30/2005

Qui, 2005-06-30 às 14:42 -0600, scott escreveu:

I am having some troubles with a combobox (cb_dropdown) not de-selecting
after it is disabled or the focus has changed. In other words the
selection highlight appears to be stuck on...Unless I click in the text
area of the combobox...

winXP Pro
Python version 2.4
wxPython version 2.6.1.0

Are there are methods to 'force' the highlight to turn off?

Yes. wxComboBox.SetMark(from, to).

Give the value 0 to both `from` and `to` args

Ricardo