AboutDlg.cpp
上传用户:geanq888
上传日期:2007-01-03
资源大小:316k
文件大小:1k
源码类别:

Ftp客户端

开发平台:

Visual C++

  1. // AboutDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "netmanager.h"
  5. #include "AboutDlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CAboutDlg dialog
  13. CAboutDlg::CAboutDlg(CWnd* pParent /*=NULL*/)
  14. : CDialog(CAboutDlg::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(CAboutDlg)
  17. // NOTE: the ClassWizard will add member initialization here
  18. //}}AFX_DATA_INIT
  19. }
  20. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  21. {
  22. CDialog::DoDataExchange(pDX);
  23. //{{AFX_DATA_MAP(CAboutDlg)
  24. // NOTE: the ClassWizard will add DDX and DDV calls here
  25. //}}AFX_DATA_MAP
  26. }
  27. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  28. //{{AFX_MSG_MAP(CAboutDlg)
  29. //}}AFX_MSG_MAP
  30. END_MESSAGE_MAP()
  31. /////////////////////////////////////////////////////////////////////////////
  32. // CAboutDlg message handlers
  33. BOOL CAboutDlg::OnInitDialog() 
  34. {
  35. CDialog::OnInitDialog();
  36. m_wndLink1.SubclassDlgItem(IDC_STATICLINK_TOOL, this, "http://www.theWaterCooler.com/Tool");
  37. m_wndLink2.SubclassDlgItem(IDC_STATICLINK_DAMNGOOD, this, "http://www.theOffice.net/DamnGoodSoftware");
  38. m_wndLink3.SubclassDlgItem(IDC_STATICLINK_CODEGURU, this, "http://www.codeguru.com");
  39. return TRUE;  // return TRUE unless you set the focus to a control
  40.               // EXCEPTION: OCX Property Pages should return FALSE
  41. }