Dialog/Widgets and TAB key...
Status: Beta
Brought to you by:
demetres
I just discovered that the TAB and Shift+TAB keys are
not respected in the dialog in the \examples\widget.c
It is rather central in the MS-Win GUI that the TAB key
shifts focus from one widget to the next, and shift+TAB
the same backwards. The TAB order of the widgets is
the same as the order they were added to the dialog in.
Logged In: YES
user_id=854221
The focus should change to the next control with
WS_TABSTOP set at CreateWindow time. WS_TABSTOP
should be set for the widgets that requires user interaction,
not for others (group box as an example).