TestDialog.cpp
上传用户:easylife05
上传日期:2007-02-14
资源大小:393k
文件大小:1k
- // TestDialog.cpp : CTestDialog 的实现
- #include "stdafx.h"
- #include "TestDialog.h"
- // CTestDialog
- LRESULT CTestDialog::OnBnClickedButmodify(WORD /*wNotifyCode*/, WORD /*wID*/, HWND /*hWndCtl*/, BOOL& /*bHandled*/)
- {
- // TODO: 在此添加控件通知处理程序代码
- HWND hwndStatus =GetDlgItem(IDC_EDIT1);
- int chCount=::GetWindowTextLength(hwndStatus);
- int rCount=chCount+1;
- LPTSTR chText=new char[rCount];
- ::GetWindowText(hwndStatus,chText,rCount);
- //chText[rCount]=0;
- ::SetWindowText(m_hWND,chText);
- delete[] chText;
- return 0;
- }