Tagged Questions
3
votes
1answer
813 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 ...
2
votes
0answers
122 views
Modeless Child WPF Window to a native MFC MDI Application
I have an MFC MDI application and I am trying to add a new dialog to it. I want this dialog to be in WPF (a Window basically rather than a dialog). This window should be modeless and a child to the ...
2
votes
4answers
3k views
How can I show a modeless dialog and display information in it immediately?
I want to show a modeless dialog on the screen and display some information in it.
However if I use it the following way, it has some problems:
function()
{
showdialog(XXX).
//heavy work.
update the ...
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
1answer
47 views
Missing WM_LBUTTONDOWN
I have a very weird behaviour in a screen with a modeless dialog and I cannot find a solution.
I open a modeless dialog by clicking on a button in a view. As the dialog is not modal I should be able ...
0
votes
2answers
262 views
MFC App with main window as modeless dialog
I am developing an MFC application and exporting it into dll. The application has only one window, and I want that window modeless. Inside InitInstance(), if I want it to be modal, I only need to do ...
0
votes
1answer
201 views
How to destroy a modeless dialog when it loses the focus?
I have a created modeless dialog and placed a grid on top of this dialog(Grid completely overlaps on dialog).This will be shown when user clicks F2.Now when user clicks left mouse button outside the ...
0
votes
2answers
356 views
MFC modeless and modal dialog
I have an application with tray icon. There is a hidden main window (CMainFrm), which is used to process tray icon messages. The tray icon has a context menu: Settings, Help, Exit commands.
When user ...
0
votes
2answers
1k views
How to Change an MFC Modeless Dialog to be the child of a CView in an MDI application?
I have an MFC application that is a Doc/View/Frame implementation. One dialog is running as a modeless dialog which pops up on demand (from a menu option). I'm looking to add the modeless dialog to ...
0
votes
3answers
666 views
How to correctly pop a modeless dialog from console using MFC
I need to create a console application that has a main() function and pop a modeless dialog, so the console can still work in parallel to the modeless dialog (do other work, like communicating with ...