liaotian.cpp
上传用户:huazhu2004
上传日期:2022-06-27
资源大小:1929k
文件大小:1k
源码类别:

ICQ/即时通讯

开发平台:

Visual C++

  1. // liaotian.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "Test.h"
  5. #include "liaotian.h"
  6. #include <fstream.h>
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // Cliaotian dialog
  14. Cliaotian::Cliaotian(CWnd* pParent /*=NULL*/)
  15. : CDialog(Cliaotian::IDD, pParent)
  16. {
  17. //{{AFX_DATA_INIT(Cliaotian)
  18. m_liaotian = _T("");
  19. //}}AFX_DATA_INIT
  20. }
  21. void Cliaotian::DoDataExchange(CDataExchange* pDX)
  22. {
  23. CDialog::DoDataExchange(pDX);
  24. //{{AFX_DATA_MAP(Cliaotian)
  25. DDX_Text(pDX, IDC_EDIT1, m_liaotian);
  26. //}}AFX_DATA_MAP
  27. }
  28. BEGIN_MESSAGE_MAP(Cliaotian, CDialog)
  29. //{{AFX_MSG_MAP(Cliaotian)
  30. ON_BN_CLICKED(IDC_BUTTON1, OnButton1)
  31. ON_BN_CLICKED(IDC_BUTTON2, Onxn)
  32. //}}AFX_MSG_MAP
  33. END_MESSAGE_MAP()
  34. /////////////////////////////////////////////////////////////////////////////
  35. // Cliaotian message handlers
  36. void Cliaotian::OnButton1() 
  37. {
  38. // TODO: Add your control notification handler code here
  39. OnCancel();
  40. }
  41. void Cliaotian::Onxn() 
  42. {
  43. // TODO: Add your control notification handler code he
  44. fstream out("1.txt",ios::out|ios::in); 
  45.     char str[100]; 
  46. while(out>>str) 
  47. m_liaotian+=str;
  48. m_liaotian+="rn";
  49. UpdateData(FALSE);
  50. }