Click here to Skip to main content
15,912,207 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionMulti Core question Pin
ForNow4-Jan-17 4:11
ForNow4-Jan-17 4:11 
AnswerRe: Multi Core question Pin
Jochen Arndt4-Jan-17 4:39
professionalJochen Arndt4-Jan-17 4:39 
GeneralRe: Multi Core question Pin
ForNow4-Jan-17 4:50
ForNow4-Jan-17 4:50 
GeneralRe: Multi Core question Pin
Jochen Arndt4-Jan-17 5:01
professionalJochen Arndt4-Jan-17 5:01 
GeneralRe: Multi Core question Pin
ForNow4-Jan-17 5:06
ForNow4-Jan-17 5:06 
GeneralCreate a program Pin
Yudha Eka Saputra3-Jan-17 18:01
Yudha Eka Saputra3-Jan-17 18:01 
GeneralRe: Create a program Pin
Victor Nijegorodov3-Jan-17 22:04
Victor Nijegorodov3-Jan-17 22:04 
GeneralRe: Create a program Pin
Richard MacCutchan3-Jan-17 23:26
mveRichard MacCutchan3-Jan-17 23:26 
QuestionRe: Create a program Pin
David Crow4-Jan-17 2:57
David Crow4-Jan-17 2:57 
GeneralRe: Create a program Pin
NotPolitcallyCorrect4-Jan-17 5:08
NotPolitcallyCorrect4-Jan-17 5:08 
QuestionMigrating from Visual Studio 2005 to Visual Studio 2015 Still Tries to Link MFC 8 Pin
SP Chapman30-Dec-16 6:20
SP Chapman30-Dec-16 6:20 
AnswerRe: Migrating from Visual Studio 2005 to Visual Studio 2015 Still Tries to Link MFC 8 Pin
Richard MacCutchan30-Dec-16 20:59
mveRichard MacCutchan30-Dec-16 20:59 
AnswerRe: Migrating from Visual Studio 2005 to Visual Studio 2015 Still Tries to Link MFC 8 Pin
leon de boer31-Dec-16 3:04
leon de boer31-Dec-16 3:04 
GeneralRe: Migrating from Visual Studio 2005 to Visual Studio 2015 Still Tries to Link MFC 8 Pin
SP Chapman3-Jan-17 6:06
SP Chapman3-Jan-17 6:06 
GeneralRe: Migrating from Visual Studio 2005 to Visual Studio 2015 Still Tries to Link MFC 8 Pin
leon de boer8-Jan-17 3:47
leon de boer8-Jan-17 3:47 
GeneralRe: Migrating from Visual Studio 2005 to Visual Studio 2015 Still Tries to Link MFC 8 Pin
SP Chapman9-Jan-17 5:44
SP Chapman9-Jan-17 5:44 
GeneralRe: Migrating from Visual Studio 2005 to Visual Studio 2015 Still Tries to Link MFC 8 Pin
Stefan_Lang27-Jan-17 2:31
Stefan_Lang27-Jan-17 2:31 
GeneralRe: Migrating from Visual Studio 2005 to Visual Studio 2015 Still Tries to Link MFC 8 Pin
SP Chapman27-Jan-17 5:26
SP Chapman27-Jan-17 5:26 
QuestionWM_SHOWWINDOW not called Pin
_Flaviu29-Dec-16 9:56
_Flaviu29-Dec-16 9:56 
Hi. I have noticed something interesting: in an MDI app, I handled ON_WM_SHOWWINDOW() in CChildFrame, just like this:
C++
void CChildFrame::OnShowWindow(BOOL bShow, UINT nStatus) 
{
	CMDIChildWnd::OnShowWindow(bShow, nStatus);

	// TODO: Add your message handler code here
TRACE("%d\n", bShow);
}

and whenever I create a new childframe (several times), I see the TRACE, so, this message are handled.

But, if I maximize the child frame, the next childframes opened are not handle this message at all ... why ? Strange ... once I maximize the childframe, whenever I create the new childframes, this message are not handled (I mean, I don't see any TRACE) ! If I restore the child frame, next child open are handle this message ... why ?

Thank for any explanation, words, everything !


But,
AnswerRe: WM_SHOWWINDOW not called Pin
Richard MacCutchan29-Dec-16 21:38
mveRichard MacCutchan29-Dec-16 21:38 
GeneralRe: WM_SHOWWINDOW not called Pin
_Flaviu29-Dec-16 21:58
_Flaviu29-Dec-16 21:58 
GeneralRe: WM_SHOWWINDOW not called Pin
leon de boer29-Dec-16 22:33
leon de boer29-Dec-16 22:33 
GeneralRe: WM_SHOWWINDOW not called Pin
_Flaviu29-Dec-16 23:36
_Flaviu29-Dec-16 23:36 
GeneralRe: WM_SHOWWINDOW not called Pin
_Flaviu29-Dec-16 23:37
_Flaviu29-Dec-16 23:37 
GeneralRe: WM_SHOWWINDOW not called Pin
_Flaviu30-Dec-16 1:07
_Flaviu30-Dec-16 1:07 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.