ViewDlg.cpp
上传用户:pyhyhg
上传日期:2022-08-11
资源大小:56k
文件大小:1k
源码类别:

Email客户端

开发平台:

Visual C++

  1. // ViewDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "POP3SMTP.h"
  5. #include "ViewDlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CViewDlg dialog
  13. CViewDlg::CViewDlg(CWnd* pParent /*=NULL*/)
  14. : CDialog(CViewDlg::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(CViewDlg)
  17. m_text = _T("");
  18. //}}AFX_DATA_INIT
  19. }
  20. void CViewDlg::DoDataExchange(CDataExchange* pDX)
  21. {
  22. CDialog::DoDataExchange(pDX);
  23. //{{AFX_DATA_MAP(CViewDlg)
  24. DDX_Text(pDX, IDC_EDIT_TEXT, m_text);
  25. //}}AFX_DATA_MAP
  26. }
  27. BEGIN_MESSAGE_MAP(CViewDlg, CDialog)
  28. //{{AFX_MSG_MAP(CViewDlg)
  29. ON_BN_CLICKED(IDC_BUTTON_SAVE, OnButtonSave)
  30. //}}AFX_MSG_MAP
  31. END_MESSAGE_MAP()
  32. /////////////////////////////////////////////////////////////////////////////
  33. // CViewDlg message handlers
  34. void CViewDlg::OnButtonSave() 
  35. {
  36. // TODO: Add your control notification handler code here
  37. CFileDialog dlg(FALSE);
  38. if(dlg.DoModal()==IDOK)
  39. {
  40. CFile file(dlg.GetPathName(),CFile::modeCreate | CFile::modeWrite | CFile::typeBinary);
  41. file.Write((LPCSTR)m_text,m_text.GetLength());
  42. file.Close();
  43. }
  44. }