Click here to Skip to main content
15,900,724 members

Comments by sunny chouhan (Top 7 by date)

sunny chouhan 22-Mar-12 11:25am View    
ok it's alright thanks for showing interest in my issue.
sunny chouhan 22-Mar-12 0:45am View    
The first point is fine.
According to you OnSize() event should be handled, But the problem is that, when i click on taskbar to maximize/restore the application the function is not called (checked by debugging).

For more information I can send you my build please install on your system to view the issue.
please provide me your email id

Thanks
sunny chouhan 21-Mar-12 6:35am View    
i have tested on another application also, same issue arises and abt code i am handling the below given code.

OnSysCommand(UINT nID, LPARAM lParam)
{
if(nID == SC_MINIMIZE)
{ ShowWindow(SW_SHOWMINIMIZED);
}
else if(nID == SC_RESTORE){
ShowWindow(SW_SHOW);
if(theApp.GetMskDlg() == true)
{
msk->ShowWindow(SW_SHOW);
msk->SetForegroundWindow();
}
}
else if(nID == SC_CLOSE)
{
if(MessageBox(_T("Do you wish to close the application?"), _T("123 Image Magic"), MB_YESNO|MB_ICONQUESTION) == IDNO)
return;
}
CDialogEx::OnSysCommand(nID, lParam);
}
}

But this function is called only when system menu is click.
it is not called from task bar when issue arises.
sunny chouhan 21-Mar-12 5:02am View    
no window xp
sunny chouhan 21-Mar-12 2:41am View    
i am trying to restore from taskbar