int num1,num2,num3; TCHAR ch1[10],ch2[10],ch3[10]; GetDlgItem(IDC_EDIT1)->GetWindowTextW(ch1,10); GetDlgItem(IDC_EDIT3)->GetWindowTextW(ch2,10); num1=_ttoi(ch1); num2=_ttoi(ch2); num3=num1+num2; _itot(num3,ch3,10); GetDlgItem(IDC_EDIT4)->SetWindowTextW((LPTSTR)ch3); int num1,num2,num3; TCHAR ch1[10],ch2[10],ch3[10]; GetDlgItem(IDC_EDIT1)->GetWindowTextW(ch1,10); GetDlgItem(IDC_EDIT3)->GetWindowTextW(ch2,10); num1=_ttoi(ch1); num2=_ttoi(ch2); num3=num1+num2; _itot(num3,ch3,10); GetDlgItem(IDC_EDIT4)->SetWindowTextW((LPTSTR)ch3);