Tagged Questions
4
votes
1answer
863 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
2answers
2k views
timed modeless dialog
Is there any way to show a modeless dialog--a dialog that allows the user to interact with whatever was on the screen before the dialog but also allows the user to interact with the dialog if pressed?
...
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 ...
1
vote
1answer
159 views
Win32: Toolbar dialog seems to never get focus and causes the main window to process slow?
I'm writing an application following this tutorial. I'm aware that this tutorial dates, and as such, I have adapted the code to take into consideration the unicode.
I have a main window which looks ...
0
votes
2answers
65 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
0answers
34 views
How can I make this Modeless dialog modal?
We currently have a modeless dialog. I was asked to make it modal. Here's the code:
CWnd* pWnd = ::AfxGetMainWnd();
if (myPath->CachedTool() && ...
0
votes
1answer
54 views
Why does the task bar appear when I display a self-drawn modeless dialog? .. sometimes?
I have an interesting (but frustraring) problem. I have an application which uses the full screen (this is meant to simulate a third-party fullscreen POS application).
My application displays a ...
0
votes
2answers
98 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 ...
0
votes
2answers
336 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
214 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
363 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
3answers
688 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 ...
0
votes
2answers
367 views
Form usable even when a modal dialog is above
I have a Dialog A and I want it to load a second dialog B which is modeless and stays along side A throughout. Dialog A may then launch a modal dialog C. But when C is present I want B to be usable. I ...
0
votes
1answer
608 views
How to call IsDialogMessage in a Modal Dialog
In my Win32 app, I had a modal dialog that displays settings that I had to add more settings to. In order to fit the new settings, I dropped a TabCtrl in the dialog and implemented two modeless ...