EVC 对话框 退出问题

liguangemail   2009-8-3 23:00 楼主
我做了一个对话框程序
当点击按键2时。整个程序全部退出。请哪位大侠给个列子哦。请问下面***处的代码应该怎么写哦!

BOOL CYaluDlg::PreTranslateMessage(MSG* pMsg)
{
        CCollectDate dlg;
       
        // TODO: Add your specialized code here and/or call the base class
   if(pMsg->message==WM_CHAR)
   {
           switch (pMsg->wParam)
           {
           case 0x2A:
                           dlg.DoModal();
                           break;
            case 0x61:
                         **************
           }
   }
return CDialog::PreTranslateMessage(pMsg);}

回复评论 (4)

PostMessage(WM_CLOSE, 0, 0);
点赞  2009-8-4 00:01
引用: 引用 1 楼 aaa_tnt 的回复:
PostMessage(WM_CLOSE, 0, 0);


正解!
点赞  2009-8-4 08:31
对话框程序啊,那就用:


EndDialog(0);
点赞  2009-8-4 09:32
postquitmessage(0);
点赞  2009-8-4 09:41
电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 京公网安备 11010802033920号
    写回复