One quirk of nested dialogs lies in what happens when the user
presses Enter to invoke the default pushbutton:
The resulting
WM_COMMAND message
goes to the top-level dialog,
even if the default pushbutton belongs to a sub-dialog. Why doesn't it send the WM_COMMAND to the parent
of the default pushbutton?
I mean, the dialog manager knows the...