| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 1851 人关注过本帖
标题:用MFC做的计算器,帮看一下有什么错误,要输入的2个数老显示不出来
只看楼主 加入收藏
新月飞鸟
Rank: 1
等 级:新手上路
帖 子:13
专家分:0
注 册:2011-10-22
结帖率:80%
收藏
已结贴  问题点数:20 回复次数:3 
用MFC做的计算器,帮看一下有什么错误,要输入的2个数老显示不出来
// caculaterDlg.cpp : implementation file
//

#include "stdafx.h"
#include "caculater.h"
#include "CaculaterDlg.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CAboutDlg dialog used for App About

class CAboutDlg : public CDialog
{

public:
    CAboutDlg();
   

// Dialog Data
    //{{AFX_DATA(CAboutDlg)
    enum { IDD = IDD_ABOUTBOX };
    //}}AFX_DATA

    // ClassWizard generated virtual function overrides
    //{{AFX_VIRTUAL(CAboutDlg)
    protected:
    virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
    //}}AFX_VIRTUAL

// Implementation
protected:
    //{{AFX_MSG(CAboutDlg)
    //}}AFX_MSG
    DECLARE_MESSAGE_MAP()
};

CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
{
    //{{AFX_DATA_INIT(CAboutDlg)
    //}}AFX_DATA_INIT
}

void CAboutDlg::DoDataExchange(CDataExchange* pDX)
{
    CDialog::DoDataExchange(pDX);
    //{{AFX_DATA_MAP(CAboutDlg)
    //}}AFX_DATA_MAP
}

BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
    //{{AFX_MSG_MAP(CAboutDlg)
        // No message handlers
    //}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CCaculaterDlg dialog

CCaculaterDlg::CCaculaterDlg(CWnd* pParent /*=NULL*/)
    : CDialog(CCaculaterDlg::IDD, pParent)
{
    //{{AFX_DATA_INIT(CCaculaterDlg)
    m_num1 = 0.0;
    m_num2 = 0.0;
    m_result = 0.0;
    //}}AFX_DATA_INIT
    // Note that LoadIcon does not require a subsequent DestroyIcon in Win32
    m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
}

void CCaculaterDlg::DoDataExchange(CDataExchange* pDX)
{
    CDialog::DoDataExchange(pDX);
    //{{AFX_DATA_MAP(CCaculaterDlg)
    DDX_Control(pDX, IDC_EDIT3, m_CResult);
    DDX_Text(pDX, IDC_EDIT1, m_num1);
    DDX_Text(pDX, IDC_EDIT2, m_num2);
    DDX_Text(pDX, IDC_EDIT3, m_result);
    //}}AFX_DATA_MAP
}

BEGIN_MESSAGE_MAP(CCaculaterDlg, CDialog)
    //{{AFX_MSG_MAP(CCaculaterDlg)
    ON_WM_SYSCOMMAND()
    ON_WM_PAINT()
    ON_WM_QUERYDRAGICON()
    ON_BN_CLICKED(IDC_BUTTON1, OnButton1)
    ON_BN_CLICKED(IDC_BUTTON2, OnButton2)
    ON_BN_CLICKED(IDC_BUTTON3, OnButton3)
    ON_BN_CLICKED(IDC_BUTTON_jian, OnBUTTONjian)
    ON_BN_CLICKED(IDC_BUTTON0, OnButton0)
    ON_BN_CLICKED(IDC_BUTTON_xiaoshudian, OnBUTTONxiaoshudian)
    ON_BN_CLICKED(IDC_BUTTON_jia, OnBUTTONjia)
    ON_BN_CLICKED(IDC_BUTTON4, OnButton4)
    ON_BN_CLICKED(IDC_BUTTON5, OnButton5)
    ON_BN_CLICKED(IDC_BUTTON6, OnButton6)
    ON_BN_CLICKED(IDC_BUTTON_cheng, OnBUTTONcheng)
    ON_BN_CLICKED(IDC_BUTTON7, OnButton7)
    ON_BN_CLICKED(IDC_BUTTON8, OnButton8)
    ON_BN_CLICKED(IDC_BUTTON9, OnButton9)
    ON_BN_CLICKED(IDC_BUTTON_chu, OnBUTTONchu)
    ON_BN_CLICKED(IDC_BUTTON_qingling, OnBUTTONqingling)
    ON_BN_CLICKED(IDC_BUTTON18, OnButton18)
    ON_EN_CHANGE(IDC_EDIT1, OnChangeEdit1)
    ON_EN_CHANGE(IDC_EDIT2, OnChangeEdit2)
    ON_EN_CHANGE(IDC_EDIT3, OnChangeEdit3)
    ON_EN_SETFOCUS(IDC_EDIT1, OnSetfocusEdit1)
    ON_EN_SETFOCUS(IDC_EDIT2, OnSetfocusEdit2)
    ON_WM_LBUTTONDOWN()
    //}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CCaculaterDlg message handlers
double  nEditFlag;

BOOL CCaculaterDlg::OnInitDialog()
{
    CDialog::OnInitDialog();
     nEditFlag=0;



    // Add "About..." menu item to system menu.

    // IDM_ABOUTBOX must be in the system command range.
    ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);
    ASSERT(IDM_ABOUTBOX < 0xF000);

    CMenu* pSysMenu = GetSystemMenu(FALSE);
    if (pSysMenu != NULL)
    {
        CString strAboutMenu;
        strAboutMenu.LoadString(IDS_ABOUTBOX);
        if (!strAboutMenu.IsEmpty())
        {
            pSysMenu->AppendMenu(MF_SEPARATOR);
            pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);
        }
    }

    // Set the icon for this dialog.  The framework does this automatically
    //  when the application's main window is not a dialog
    SetIcon(m_hIcon, TRUE);            // Set big icon
    SetIcon(m_hIcon, FALSE);        // Set small icon
   
    // TODO: Add extra initialization here
   
    return TRUE;  // return TRUE  unless you set the focus to a control
}

void CCaculaterDlg::OnSysCommand(UINT nID, LPARAM lParam)
{
    if ((nID & 0xFFF0) == IDM_ABOUTBOX)
    {
        CAboutDlg dlgAbout;
        dlgAbout.DoModal();
    }
    else
    {
        CDialog::OnSysCommand(nID, lParam);
    }
}

// If you add a minimize button to your dialog, you will need the code below
//  to draw the icon.  For MFC applications using the document/view model,
//  this is automatically done for you by the framework.

void CCaculaterDlg::OnPaint()
{
    if (IsIconic())
    {
        CPaintDC dc(this); // device context for painting

        SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);

        // Center icon in client rectangle
        int cxIcon = GetSystemMetrics(SM_CXICON);
        int cyIcon = GetSystemMetrics(SM_CYICON);
        CRect rect;
        GetClientRect(&rect);
        int x = (rect.Width() - cxIcon + 1) / 2;
        int y = (rect.Height() - cyIcon + 1) / 2;

        // Draw the icon
        dc.DrawIcon(x, y, m_hIcon);
    }
    else
    {
        CDialog::OnPaint();
    }
}

// The system calls this to obtain the cursor to display while the user drags
//  the minimized window.
HCURSOR CCaculaterDlg::OnQueryDragIcon()
{
    return (HCURSOR) m_hIcon;
}

void CCaculaterDlg::OnButton1()
{
    // TODO: Add your control notification handler code here
     UpdateData(true);
           

       if ( nEditFlag==1)

         {

                  m_num1=m_num1*10+1;

         }

         else if (nEditFlag==2)

         {

                   m_num2=m_num2*10+1;

         }

         UpdateData(false);


}

void CCaculaterDlg::OnButton2()
{
    // TODO: Add your control notification handler code here

       if ( nEditFlag==1)

         {

                  m_num1=m_num1*10+2;

         }

         else if (nEditFlag==2)

         {

                   m_num2=m_num2*10+2;

         }

         UpdateData(false);

   
}

void CCaculaterDlg::OnButton3()
{
    // TODO: Add your control notification handler code here
   

       if ( nEditFlag==1)

         {

                  m_num1=m_num1*10+3;

         }

         else if (nEditFlag==2)

         {

                   m_num2=m_num2*10+3;

         }

         UpdateData(false);

   
}

void CCaculaterDlg::OnBUTTONjian()
{
    // TODO: Add your control notification handler code here
     UpdateData();

         double n_result;

         n_result = m_num1 - m_num2;

         m_result = n_result;

         char sz[20];

         sprintf(sz,"%f",m_result);

    m_CResult.SetWindowText(sz);


   
}

void CCaculaterDlg::OnButton0()
{
    // TODO: Add your control notification handler code here
     if ( nEditFlag==1)

         {

                  m_num1=m_num1*10+0;

         }

         else if (nEditFlag==2)

         {

                   m_num2=m_num2*10+0;

         }

         UpdateData(false);

   
}

void CCaculaterDlg::OnBUTTONxiaoshudian()
{
    // TODO: Add your control notification handler code here
   
}

void CCaculaterDlg::OnBUTTONjia()
{
    // TODO: Add your control notification handler code here
     UpdateData();

         double n_result;

         n_result = m_num1 + m_num2;

         m_result = n_result;

         char sz[20];

         sprintf(sz,"%f",m_result);

    m_CResult.SetWindowText(sz);


   
}

void CCaculaterDlg::OnButton4()
{
    // TODO: Add your control notification handler code here
     

       if ( nEditFlag==1)

         {

                  m_num1=m_num1*10+4;

         }

         else if (nEditFlag==2)

         {

                   m_num2=m_num2*10+4;

         }

         UpdateData(false);

   
}

void CCaculaterDlg::OnButton5()
{
    // TODO: Add your control notification handler code here
   

       if ( nEditFlag==1)

         {

                  m_num1=m_num1*10+5;

         }

         else if (nEditFlag==2)

         {

                   m_num2=m_num2*10+5;

         }

         UpdateData(false);

   
}

void CCaculaterDlg::OnButton6()
{
    // TODO: Add your control notification handler code here
   

       if ( nEditFlag==1)

         {

                  m_num1=m_num1*10+6;

         }

         else if (nEditFlag==2)

         {

                   m_num2=m_num2*10+6;

         }

         UpdateData(false);

   
}

void CCaculaterDlg::OnBUTTONcheng()
{
    // TODO: Add your control notification handler code here
     UpdateData();

         double n_result;

         n_result = m_num1 * m_num2;

         m_result = n_result;

         char sz[20];

         sprintf(sz,"%f",m_result);

    m_CResult.SetWindowText(sz);


   
}

void CCaculaterDlg::OnButton7()
{
    // TODO: Add your control notification handler code here
   

       if ( nEditFlag==1)

         {

                  m_num1=m_num1*10+7;

         }

         else if (nEditFlag==2)

         {

                   m_num2=m_num2*10+7;

         }

         UpdateData(false);

   
}

void CCaculaterDlg::OnButton8()
{
    // TODO: Add your control notification handler code here


       if ( nEditFlag==1)

         {

                  m_num1=m_num1*10+8;

         }

         else if (nEditFlag==2)

         {

                   m_num2=m_num2*10+8;

         }

         UpdateData(false);

   
}

void CCaculaterDlg::OnButton9()
{
    // TODO: Add your control notification handler code here
   

       if ( nEditFlag==1)

         {

                  m_num1=m_num1*10+9;

         }

         else if (nEditFlag==2)

         {

                   m_num2=m_num2*10+9;

         }

         UpdateData(false);

   
}

void CCaculaterDlg::OnBUTTONchu()
{
    // TODO: Add your control notification handler code here
     UpdateData();

         double n_result;

         n_result = m_num1 / m_num2;

         m_result = n_result;

         char sz[20];

         sprintf(sz,"%f",m_result);

    m_CResult.SetWindowText(sz);


}



void CCaculaterDlg::OnBUTTONqingling()
{
    // TODO: Add your control notification handler code here
   
    UpdateData(true);
    m_num1=0;
    m_num2=0;
    m_result=0;
    UpdateData(false);


   
}

void CCaculaterDlg::OnButton18()
{
    // TODO: Add your control notification handler code here
   
}

void CCaculaterDlg::OnChangeEdit1()
{
    // TODO: If this is a RICHEDIT control, the control will not
    // send this notification unless you override the CDialog::OnInitDialog()
    // function and call CRichEditCtrl().SetEventMask()
    // with the ENM_CHANGE flag ORed into the mask.
   
    // TODO: Add your control notification handler code here
   
}

void CCaculaterDlg::OnChangeEdit2()
{
    // TODO: If this is a RICHEDIT control, the control will not
    // send this notification unless you override the CDialog::OnInitDialog()
    // function and call CRichEditCtrl().SetEventMask()
    // with the ENM_CHANGE flag ORed into the mask.
   
    // TODO: Add your control notification handler code here
   
}

void CCaculaterDlg::OnChangeEdit3()
{
    // TODO: If this is a RICHEDIT control, the control will not
    // send this notification unless you override the CDialog::OnInitDialog()
    // function and call CRichEditCtrl().SetEventMask()
    // with the ENM_CHANGE flag ORed into the mask.
   
    // TODO: Add your control notification handler code here
   
}



   


/*void CCaculaterDlg::OnLButtonDown(UINT nFlags, CPoint point)
{
    // TODO: Add your message handler code here and/or call default
   
    CDialog::OnLButtonDown(nFlags, point);
}*/


void CCaculaterDlg::OnSetfocusEdit1()
{
    // TODO: Add your control notification handler code here
     nEditFlag=1;     


   
}

void CCaculaterDlg::OnSetfocusEdit2()
{
    // TODO: Add your control notification handler code here
    nEditFlag=2;     
}
搜索更多相关主题的帖子: 计算器 include public file 
2012-06-17 21:17
新月飞鸟
Rank: 1
等 级:新手上路
帖 子:13
专家分:0
注 册:2011-10-22
收藏
得分:0 
caculater.rar (1.82 MB)
这是弄的
2012-06-17 21:23
lonmaor
Rank: 16Rank: 16Rank: 16Rank: 16
来 自:郑州
等 级:版主
威 望:75
帖 子:2637
专家分:6423
注 册:2007-11-27
收藏
得分:20 
楼主你想复杂了,输入框的关联变量用CString类型就可以了。在运算的时候再转换成int型的。

从不知道到知道,到知道自己不知道,成长的道路上脚步深深浅浅
2012-06-18 15:27
junlove09
Rank: 1
等 级:新手上路
帖 子:3
专家分:0
注 册:2012-6-25
收藏
得分:0 
这是一个例子

void CTestDlg::OnBtnAdd()
{int num1,num2,num3;
Char ch1[10],ch2[10],ch3[10];
m_edit1. GetWindowText(ch1,10);
m_edit2. GetWindowText(ch2,10);
num1=atoi(ch1);
num2=atoi(ch2);
num3=num1+num2;
Itoa(num3,ch3,10);
m_edit3. SetWindowText(ch3);
}
2012-06-25 21:02
快速回复:用MFC做的计算器,帮看一下有什么错误,要输入的2个数老显示不出来
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.014707 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved