yet another wxComboBox problem...

It doesn't appear that wxComboBoxes can be configured to process
tab events, so the key events for WXK_TAB are never even seen
by any EVT_KEY_DOWN routine you might register.
(Unlike wxTE_PROCESS_TAB, there is no wxCB_PROCESS_TAB...)

Is there anything I can do other than file a feature request and
wait indefinitely for someone in the wxWindows development
community to add this?

}:-{

/Will Sadkin
Parlance Corporation

Will Sadkin wrote:

It doesn't appear that wxComboBoxes can be configured to process
tab events, so the key events for WXK_TAB are never even seen
by any EVT_KEY_DOWN routine you might register. (Unlike wxTE_PROCESS_TAB, there is no wxCB_PROCESS_TAB...)

Is there anything I can do other than file a feature request and
wait indefinitely for someone in the wxWindows development community to add this?

I don't see anything in the code for TAB, although you could try the wxWANTS_CHARS style and then you should get key_down events for all the navigation keys. Be sure to generate wxNavigationEvents when appropriate though...

ยทยทยท

--
Robin Dunn
Software Craftsman
http://wxPython.org Java give you jitters? Relax with wxPython!