TestDialog.cpp
上传用户:easylife05
上传日期:2007-02-14
资源大小:393k
文件大小:1k
源码类别:

PlugIns编程

开发平台:

Visual C++

  1. // TestDialog.cpp : CTestDialog 的实现
  2. #include "stdafx.h"
  3. #include "TestDialog.h"
  4. // CTestDialog
  5. LRESULT CTestDialog::OnBnClickedButmodify(WORD /*wNotifyCode*/, WORD /*wID*/, HWND /*hWndCtl*/, BOOL& /*bHandled*/)
  6. {
  7. // TODO: 在此添加控件通知处理程序代码
  8. HWND hwndStatus =GetDlgItem(IDC_EDIT1);
  9. int chCount=::GetWindowTextLength(hwndStatus);
  10. int rCount=chCount+1;
  11. LPTSTR  chText=new char[rCount];
  12. ::GetWindowText(hwndStatus,chText,rCount);
  13. //chText[rCount]=0;
  14. ::SetWindowText(m_hWND,chText);
  15. delete[] chText;
  16. return 0;
  17. }