Tagged Questions

3
votes
1answer
820 views

Always-in-front dialogs

Is there a way to create a modeless dialog box in C++ MFC which always stays on top of the other windows in the application? I'm thinking sort of like the Find dialog in Visual Studio 2005 - where it ...
0
votes
2answers
31 views

MFC modeless dialog close immediately

I like to write a modeless dialog based app, but I have a problem. When the program starts, the window close immediately. The same code works fine when I make a modal dialog. (DoModal()) ...
0
votes
2answers
80 views

Modeless dialogs and accelerators

I want to perform some action when the user presses CTRL+S inside a modeless dialog. Accelerators would be perfect for this, except that I don't have control over the thread's message loop (think ...