Tagged Questions
The cdialog tag has no wiki summary.
6
votes
1answer
146 views
CDialog memory leaks in VC10
We are upgrading from VC8 to VC10 and have found a number of memory leaks that seem to be CDialog related. The simplest example of this is demonstrated with the following code using a CDialog that ...
5
votes
3answers
3k views
How to send a string via PostMessage?
Inside my app, I want to send a message to a dialog from a different thread.
I want to pass an std::exception derived class reference to the dialog.
Something like this:
try {
//do stuff
}
...
4
votes
5answers
2k views
How to display a non-modal CDialog?
Can someone say me how I could do a No Modal Dialog in MFC's Visual c++ 6.0 for show it?
I wrote this,
CDialog dialog;
if (dialog.init(initialization values...))
dialog.DoModal();
But it blocks ...
3
votes
3answers
2k views
Convert a modeless dialog to modal at runtime
I have a dialog (CDialog derived class) that can be used in two different ways (edition mode and programming mode).
When the dialog is open to be used in programming mode it is a modeless dialog that ...
2
votes
2answers
505 views
Put MFC CDialog in a WPF form
We are porting an MFC application to WPF, and will probably won't have time to port the entire application. The MFC app has many CDialog-based windows, and we are thinking of leaving some of these ...
1
vote
2answers
77 views
How to change CDialog icon in response to mouseover?
How can I change the application icon on mouseover? I want to put some menu items in the system menu of my CDialog, and I want the icon to highlight when the user mouses over it to indicate that it ...
1
vote
1answer
242 views
CDialog ShowWindow problem
I have a SDI application. In the application there's a modeless dialog which is used to show some message like communicating with the server during doing work. Question is, when the dialog's parent ...
1
vote
4answers
2k views
Visual C++ 6.0 - OnInitDialog in a Derived CDialog class not working
I have create a simple MFC appwizard dialog project. I used the Class Wizard to create a new class called CMyDlg based on CDialog. Then I went to the Message Map screen and doubleclicked on the ...
1
vote
1answer
1k views
How to get window handle from a CDialog derived class?
Is there a way to retrieve window handle from a CDialog derived class (like CWnd::m_hWnd member) ?
Thanks
1
vote
2answers
485 views
I can't seem to add a column header to a list box in an inherited MFC dialog. What's wrong?
I have a CStdDlg thats inherits from a CDialog class. In the CStdDlg dialog, I have a list box (m_lcList1), edit box (m_ceEdit1), a radio button(m_rbButton2) and buttons OK, Cancel and Button1.
I ...
1
vote
2answers
240 views
Create a CDialog in the corner of the screen
I have an MFC application that creates a CDialog. I'd like this CDialog to not show up in the middle of the screen, but rather off to the side of the screen so its barely visible or even minimized ...
1
vote
1answer
82 views
.NET + COM changed keyboard routing behavior
I have a problem so strange that I hardly can put an adequate title to it.
In short: I have COM object written in MSVC++/MFC with a dialog derived from CDialog. On that dialog I have three child ...
1
vote
3answers
584 views
Command-line dialog tool for Windows
I need a dialog tool similar to cdialog (or whiptail), but one that will work on Windows.
I have MinGW and compiling something from source is no problem, but both cdialog and whiptail, the only ones ...
1
vote
1answer
296 views
CDialog not closing when two buttons mapped
Visual Studio 2005, C++, Windows XP.
I have a CDialog with a single button, which calls a function like so:
BEGIN_MESSAGE_MAP(Foo, BaseDlg) //BaseDlg inherits from CDialog
ON_BN_CLICKED(IDBAR, ...
1
vote
1answer
187 views
Open CDialog from Java using JNI
I have an application that needs to open a CDialog written inside a DLL. The problem is that when DoModal() is called inside the DLL, the program crashes with: "Debug Assertion Failed!". Does anyone ...
0
votes
2answers
31 views
Dividing a CDialog in two areas with different backgrounds (picture of the objective inside)
I need to build a window designed to look exactly like this (it has controls inside the white area, but that's not relevant for now):
My problem is defining those two separate "areas" with ...
0
votes
1answer
49 views
how to end a dialog mfc application from CDialog::OnInitDialog or immediately after this function ends
At some case in my application I want to end the application in the dialog's OnInitDialog or immediately after this function. Is there any way to do it? I tried using windows messages - in ...
0
votes
1answer
59 views
How to display system menu on CDialog popup?
I have a CDialog based application. In the Visual Studio resource editor the properties for my dialog show the style is set to "Popup" and the System Menu value is "True". However when I run my ...
0
votes
1answer
129 views
how to hide CDialogEX from taskbar? (MFC C++)
I have the main-frame, when someone is pressing a button I open a CDialogEX.
After I open it, it get's an empty task-bar tab, with no title or icon...
i want it to open as a child window of the ...
0
votes
1answer
75 views
MFC aero shake window message
I am working on a program built in MFC.
I have this weird situation when I shake my CFormView. The first time everything is minimised correctly, but when I shake it the second time while all of the ...
0
votes
2answers
157 views
Avoid Flickering on a dialog that moves its controls on resize
I have a popup dialog( CDialog ) that handles WM_CTLCOLOR message to color itself. It is having some controls (like bitmap buttons) that draws themselves using OwnerDraw. It is also having a control ...
0
votes
2answers
317 views
Show dialog from MFC DLL
I loaded the form but only buttons without functions
HMODULE hModule = LoadLibrary(L"Tools.dll");
if (hModule != NULL)
{
AfxSetResourceHandle(hModule);
CDialog dgl(MAKEINTRESOURCE(199), ...
0
votes
2answers
57 views
Intercept CDialog creation
I have a rather large app that displays many different MFC CDialog-derived dialog windows. All of the dialogs are displayed from a central function that is similar to this:
void ...
0
votes
2answers
426 views
A Dialog derived from CDialog returns -1 after DoModal (MFC/C++)
I have created a Dialog which it's derived from CDialog (MFC does this automatically), but I had to override the OnInitDialog method to make initialization of a ComboBox:
BOOL CLogin::OnInitDialog()
...
0
votes
1answer
344 views
Passing data between subforms of type CDialog
I have a MS Visual C++ 2005 project where I am trying to have a main dialog box with a section devoted to displaying selectable subform dialogs boxes. Each subform will be of the same size but have a ...
0
votes
1answer
82 views
Infinite Thread that may or may not run a CDialog each loop
I am working on a MFC project where I need a separate loop that will run continually or once every few seconds, and each time it may or may not need to run a Dialog to get some input from the user. I ...
0
votes
1answer
259 views
Anchor buttons in a dialog when using SW_MAXIMIZE
This should be a simple one:
I have a CDialog with 2 buttons.
The dialog is always opened in full screen (No title bar \ Status, etc...) using m_pMainWnd->ShowWindow(SW_MAXIMIZE);
I want my ...
0
votes
1answer
117 views
CDialog not main frame descendant
Is there a way to make a dialog (CDialog) not descendant of the main frame?
If I don't specify a parent window at creation time the parent window is the main application window. I have tried to use ...
0
votes
2answers
935 views
MFC CDialog::Create fails
I'm having problems with some code to create a CDialog based window. The code was working fine last week. The only changes I made was replacing a C++ deque with a hash array. I had commented out ...
0
votes
3answers
4k views
How to SetFocus to a CButton so that the border and focus dotted line are visible?
I created a simple dialog-based application, and in the default CDialog added three buttons (by drag-and-dropping them) using the Visual Studio editor.
The default OK and Cancel buttons are there ...
0
votes
4answers
2k views
Custom tooltip with a WS_POPUP dialog
I want to create custom tooltips where I can put any kind of controls. I have derived from CDialog and used the WS_POPUP | WS_BORDER styles. I also add the CS_DROPSHADOW style in the OnInitDialog to ...