ClientLog.cpp
上传用户:power_led
上传日期:2013-04-11
资源大小:373k
文件大小:1k
源码类别:

ICQ/即时通讯

开发平台:

Visual C++

  1. // ClientLog.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "ChatClient.h"
  5. #include "ClientLog.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CClientLog dialog
  13. CClientLog::CClientLog(CWnd* pParent /*=NULL*/)
  14. : CDialog(CClientLog::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(CClientLog)
  17. m_strUsrName = _T("asdf");
  18. //}}AFX_DATA_INIT
  19. }
  20. void CClientLog::DoDataExchange(CDataExchange* pDX)
  21. {
  22. CDialog::DoDataExchange(pDX);
  23. //{{AFX_DATA_MAP(CClientLog)
  24. DDX_Text(pDX, IDC_USERNAME, m_strUsrName);
  25. DDV_MaxChars(pDX, m_strUsrName, 20);
  26. //}}AFX_DATA_MAP
  27. }
  28. BEGIN_MESSAGE_MAP(CClientLog, CDialog)
  29. //{{AFX_MSG_MAP(CClientLog)
  30. //}}AFX_MSG_MAP
  31. END_MESSAGE_MAP()
  32. /////////////////////////////////////////////////////////////////////////////
  33. // CClientLog message handlers
  34. void CClientLog::OnOK() 
  35. {
  36. // TODO: Add extra validation here
  37. UpdateData();
  38. CDialog::OnOK();
  39. }
  40. BOOL CClientLog::OnInitDialog() 
  41. {
  42. CDialog::OnInitDialog();
  43. // TODO: Add extra initialization here
  44. return TRUE;  // return TRUE unless you set the focus to a control
  45.               // EXCEPTION: OCX Property Pages should return FALSE
  46. }