Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
4answers
583 views

What is the lifetime of a CWnd obtained from CWnd::FromHandle?

According to msdn, when I get a CWnd* with CWnd::FromHandle, The pointer may be temporary and should not be stored for later use. What is meant by "later use" is not clear to me. Is it only the ...
3
votes
4answers
752 views

How to redirect MFC messages to another object?

In an instance of a class derived from CWnd, is it possible to forward (redirect) all MFC messages to another object, without writing separate handlers and message mappings for each possible message? ...
2
votes
2answers
463 views

Maximized Window Restores to Full Screen

Using CWnd::ShowWindow(SW_SHOWMAXIMIZED) maximizes my app window as expected. However, when clicking the restore button on the app (or double clicking the title-bar), the restored size is the same ...
1
vote
2answers
72 views

Understanding CStatic and CWnd and message routing

I'm trying to understand how message routing works in MFC, and I have some questions regarding it. Imagine a control that extends CWnd. My first question is: are all messages in that control passed on ...
1
vote
3answers
547 views

How to replace window desktop with my own application window CWnd

I tried to paint on my windows desktop using GetDesktopWindow(). But i failed because desktop repaints itself rapidly and my painting doesn't appear. So I need to replace my desktop window obtained by ...
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
6answers
724 views

MFC: What on earth is a CSplitterWnd Caret?

What on earth is a caret in the context of a CSplitterWnd class? I can't find any documentation relating explicitly to CSplitterWnds... EDIT: Specifically, what do these functions actually do: CWnd ...
0
votes
3answers
111 views

MFC add scrollbar to CWnd member

I have a member of CWnd class name mywindow and i want to add to it a scroll-bar. how i can do it? i try already to do: mywindow.EnableScrollBarCtrl(SB_BOTH,TRUE); it display both Horizontal and ...
0
votes
0answers
158 views

CWnd as ActiveX control without .dll or .ocx file in C++?

Dear MFC/ActiveX/COM cracks, I have 'inherited' the source of an old MFC application (originally created with Visual Studio 6) which builds and runs so far in VS 2010, but has embedded some ActiveX ...
0
votes
1answer
193 views

C++ Error: identifier “CWnd” is not defined

I'm very much a C++ newbie, so please bear with me. This line of code which resides within a function: CWnd* pWnd = CWnd::FindWindow("Shell_TrayWnd", ""); CWnd is coming up as "undefined". I know ...
0
votes
1answer
180 views

Restricting GetFocus to specific dialog and/or application

I have a MS Visual C++ project where I have a CDialog based dialog box with several edit controls. I want to highlight the control with the current focus for the user. I implemented this by getting ...
0
votes
2answers
573 views

Why paint messages get lost even after calling UpdateWindow()?

I have an application with following windows hierarchy: W1 -W2 (Child of W1) - W3 ( Child of W2) --------------------| | W1|------------| | | |W2 |------| | | | | |W3 | | | | | ...
0
votes
1answer
1k views

why message box is always hidden behind main dialog and cannot be shown on the top

I am using MFC to write a GUI application. I chose dialog-based application, and put picture control, edit box and buttons on it. When the picture control is mapped to the class derived from CWnd ...
0
votes
1answer
259 views

Custom image while dragging an CWnd-derived object

I want to display a custom image while dragging an object in a drag&drop operation. I have created a CWnd-derived control (a chart) and I display 4 of them in the same dialog. I've implemented ...
0
votes
1answer
87 views

How to know when a controls is going to be hidden

I have a control derived from a CWnd object that has its custom implemented tooltip system . The tooltip is implemented using a CDialog and works fine but I have a problem to know when I have to hide ...
0
votes
1answer
315 views

DLGTEMPLATE to CWnd-derived control

Is it possible to take a DLGTEMPLATE and use it as a CWnd-derived control for placing in any other CWnd? I have a dialog template that I want to use on one of my CDockablePanes
0
votes
3answers
2k views

Static control with WS_EX_TRANSPARENT style not repainted

I am trying to create a control that implements the per-pixel alpha blend while painting a 32-bit bitmap. I extended a CWnd and use static control in the resource editor. I managed to paint the alpha ...