Click here to Skip to main content
15,926,281 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: CreateQueueTimer problem.........?? Pin
shaina223116-Dec-08 18:10
shaina223116-Dec-08 18:10 
GeneralRe: CreateQueueTimer problem.........?? Pin
shaina223116-Dec-08 18:56
shaina223116-Dec-08 18:56 
GeneralRe: CreateQueueTimer problem.........?? Pin
shaina223116-Dec-08 19:34
shaina223116-Dec-08 19:34 
AnswerRe: CreateQueueTimer problem.........?? Pin
Naveen16-Dec-08 19:28
Naveen16-Dec-08 19:28 
GeneralRe: CreateQueueTimer problem.........?? Pin
shaina223116-Dec-08 20:03
shaina223116-Dec-08 20:03 
QuestionZ Order - CPropertySheet on top Pin
john john mackey16-Dec-08 13:12
john john mackey16-Dec-08 13:12 
AnswerRe: Z Order - CPropertySheet on top Pin
Mark Salsbery16-Dec-08 14:15
Mark Salsbery16-Dec-08 14:15 
GeneralRe: Z Order - CPropertySheet on top [modified] Pin
john john mackey18-Dec-08 7:07
john john mackey18-Dec-08 7:07 
I tried this, as is, but still notice my unwanted results.

The parent of my CPropertySheet is a Frame window object. I create my modeless property sheet as:
m_pSettingsConsole->Create(NULL, WS_SYSMENU | WS_POPUP | WS_CAPTION | DS_MODALFRAME | DS_CONTEXTHELP, WS_EX_DLGMODALFRAME);
m_pSettingsConsole->SetWindowPos(this,0,0,0,0,SWP_NOMOVE | SWP_NOSIZE);

Is there more to set the Z order? BringWindowToTop? Keep it on top?

confused Confused | :confused:

Revised My error was in my Create argument, the parent window should be my Frame window object, not the desktop (NULL)...
m_pSettingsConsole->Create( this , WS_SYSMENU | WS_POPUP | WS_CAPTION | DS_MODALFRAME | DS_CONTEXTHELP, WS_EX_DLGMODALFRAME);
m_pSettingsConsole->SetWindowPos(this,0,0,0,0,SWP_NOMOVE | SWP_NOSIZE);


modified on Thursday, December 18, 2008 2:31 PM

QuestionATL control background color Pin
Kenny Adorisio16-Dec-08 6:36
Kenny Adorisio16-Dec-08 6:36 
AnswerRe: ATL control background color Pin
Randor 17-Dec-08 0:29
professional Randor 17-Dec-08 0:29 
QuestionGetDlgItem in Dialog class Pin
pratap198016-Dec-08 6:24
pratap198016-Dec-08 6:24 
AnswerRe: GetDlgItem in Dialog class Pin
Eytukan16-Dec-08 6:34
Eytukan16-Dec-08 6:34 
AnswerRe: GetDlgItem in Dialog class Pin
jeron116-Dec-08 6:35
jeron116-Dec-08 6:35 
AnswerRe: GetDlgItem in Dialog class Pin
Mark Salsbery16-Dec-08 6:55
Mark Salsbery16-Dec-08 6:55 
AnswerRe: GetDlgItem in Dialog class Pin
CPallini16-Dec-08 7:20
mveCPallini16-Dec-08 7:20 
QuestionPhysically include dll in compile/link with VC2005 Pin
rechmbrs16-Dec-08 4:54
rechmbrs16-Dec-08 4:54 
AnswerRe: Physically include dll in compile/link with VC2005 Pin
Code-o-mat16-Dec-08 5:14
Code-o-mat16-Dec-08 5:14 
GeneralRe: Physically include dll in compile/link with VC2005 Pin
rechmbrs16-Dec-08 5:57
rechmbrs16-Dec-08 5:57 
GeneralRe: Physically include dll in compile/link with VC2005 Pin
Code-o-mat16-Dec-08 6:16
Code-o-mat16-Dec-08 6:16 
GeneralRe: Physically include dll in compile/link with VC2005 Pin
Randor 16-Dec-08 6:35
professional Randor 16-Dec-08 6:35 
GeneralRe: Physically include dll in compile/link with VC2005 Pin
Code-o-mat16-Dec-08 6:41
Code-o-mat16-Dec-08 6:41 
GeneralRe: Physically include dll in compile/link with VC2005 Pin
Randor 16-Dec-08 7:12
professional Randor 16-Dec-08 7:12 
GeneralRe: Physically include dll in compile/link with VC2005 Pin
rechmbrs16-Dec-08 7:43
rechmbrs16-Dec-08 7:43 
GeneralRe: Physically include dll in compile/link with VC2005 Pin
rechmbrs16-Dec-08 7:45
rechmbrs16-Dec-08 7:45 
GeneralRe: Physically include dll in compile/link with VC2005 Pin
rechmbrs16-Dec-08 7:42
rechmbrs16-Dec-08 7:42 

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.