Click here to Skip to main content
16,005,682 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: manifest and xp themes Pin
Jeremy Falcon14-Nov-06 21:25
professionalJeremy Falcon14-Nov-06 21:25 
GeneralRe: manifest and xp themes Pin
Jeremy Falcon15-Nov-06 7:09
professionalJeremy Falcon15-Nov-06 7:09 
GeneralRe: manifest and xp themes Pin
PJ Arends15-Nov-06 14:25
professionalPJ Arends15-Nov-06 14:25 
GeneralRe: manifest and xp themes Pin
Jeremy Falcon15-Nov-06 14:27
professionalJeremy Falcon15-Nov-06 14:27 
QuestionTab Control Pin
A_Fa14-Nov-06 20:12
A_Fa14-Nov-06 20:12 
AnswerRe: Tab Control Pin
PJ Arends14-Nov-06 21:03
professionalPJ Arends14-Nov-06 21:03 
Questioncursor position in CListctrl Pin
RajiRaghu14-Nov-06 19:57
RajiRaghu14-Nov-06 19:57 
Questionhiding child windows Pin
keyurbhatnagar14-Nov-06 19:38
keyurbhatnagar14-Nov-06 19:38 
Hi!
I have a Formview and in that i have many graphs. Onleftdblclick onany graph it zooms. Till here i don't have ne problem but the problem is that i can not hide the graphs and controls behind it, i.e when i click on the zoomed graph i can see the comtrols behind it. i want a method to hide all the controls exept th one zoomed and show them again when it restores...
can ne one help me????

if(bFullScreen)
{
this->SetActiveWindow();
this->SetWindowPos(&wndBottom, 1,1,1005,594,SWP_SHOWWINDOW);
// this->SetForegroundWindow();
// this->BringWindowToTop();
//this->MoveWindow(1,1,1005,594);
bFullScreen = false;

HWND hwnd = ::GetTopWindow(this->GetSafeHwnd());
while (hwnd)
{
hwnd = ::GetNextWindow(hwnd, GW_HWNDNEXT);
::EnableWindow(hwnd, FALSE);
}

}
else
{
this->MoveWindow(rectWnd);
bFullScreen = true;
}

CWnd::OnLButtonDblClk(nFlags, point);

i have the above code but it is'nt working....

Keyur Bhatnagar
AnswerRe: hiding child windows Pin
Hamid_RT14-Nov-06 20:24
Hamid_RT14-Nov-06 20:24 
GeneralRe: hiding child windows Pin
keyurbhatnagar14-Nov-06 21:17
keyurbhatnagar14-Nov-06 21:17 
GeneralRe: hiding child windows Pin
Hamid_RT15-Nov-06 7:29
Hamid_RT15-Nov-06 7:29 
GeneralRe: hiding child windows Pin
keyurbhatnagar15-Nov-06 17:15
keyurbhatnagar15-Nov-06 17:15 
GeneralRe: hiding child windows Pin
Hamid_RT15-Nov-06 18:36
Hamid_RT15-Nov-06 18:36 
QuestionWhat is Thread? Pin
Cmania14-Nov-06 19:04
Cmania14-Nov-06 19:04 
AnswerRe: What is Thread? Pin
Christian Graus14-Nov-06 19:08
protectorChristian Graus14-Nov-06 19:08 
AnswerRe: What is Thread? Pin
Monty214-Nov-06 19:13
Monty214-Nov-06 19:13 
GeneralRe: What is Thread? Pin
Cmania14-Nov-06 20:58
Cmania14-Nov-06 20:58 
GeneralRe: What is Thread? Pin
Hamid_RT15-Nov-06 7:30
Hamid_RT15-Nov-06 7:30 
AnswerRe: What is Thread? Pin
switang17-Nov-06 3:42
switang17-Nov-06 3:42 
QuestionAbout DLL mapping Pin
Cmania14-Nov-06 18:57
Cmania14-Nov-06 18:57 
AnswerRe: About DLL mapping Pin
Stephen Hewitt14-Nov-06 19:04
Stephen Hewitt14-Nov-06 19:04 
GeneralRe: About DLL mapping Pin
Cmania14-Nov-06 21:07
Cmania14-Nov-06 21:07 
QuestionNeed VC++ code to verify the XML digital signature Pin
Prinky14-Nov-06 18:52
Prinky14-Nov-06 18:52 
AnswerRe: Need VC++ code to verify the XML digital signature Pin
Christian Graus14-Nov-06 19:09
protectorChristian Graus14-Nov-06 19:09 
GeneralRe: Need VC++ code to verify the XML digital signature Pin
Prinky14-Nov-06 19:45
Prinky14-Nov-06 19:45 

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.