Hi Everyone, I've been working on a dialog that shows a list of open documents in an editor. I'm using the EVT_KEY_UP to pop up the dialog from the main window. However what I then want to have happen is while the CRTL is still down have the TAB key_up move the highlighted document in the list along. Of course once done, select the document to be the active one.
Basically what you see in something like Notepad++ or visual studio. What I'm stuck with is what ( if I can ) do I use to pass this event along to the newly popped up Dialog, such that the Dialog itself processes the event ? I haven't been able to find an example of such a thing, but I have seen something in the window class that talks about Navigate and the Wx::NavigationKeyEvent class, but I can't figure out if this is the right way ( or even how to use it correctly ). Thanks, Pete.