I'm now writing an Win32 SDK application. I need to create a modal child window for select from several options. My design is: Simply display them on the child window, if user press key 1, the 1st options is selected. other options are the same. After selection is made the child window close self automatically.
My problem is, is there a simple way to create such a child window? I have found two ways, both with some boring steps.
The first way is to create a dialog resource and use DialogBox function. It can easily create a modal child window. But since it is a modal dialog, system has filtered out all keyboard messages. I need to use some special tecs, like message hooking or something, to get these messages.
The second way is to register a class and directly call the CreateWindow(Ex) function. It can easily create a window with keyboard messages. But it seems to set it as a modal dialog is boring. I need to manually disable the parent window, set child window foreground, create a complete message loop for this window, and manually enable the parent window after it destroyed.
I have searched for a simple way to create a window with both of these 2 features. However found no clue apart from these 2 ways above. I'm not sure if this way exists. Can anyone tell me? My thanks for replies.