CalendarDataSourceDialog.cpp
上传用户:szled88
上传日期:2015-04-09
资源大小:43957k
文件大小:2k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. // CalendarDataSourceDialog.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "SQLServerDataProvider.h"
  5. #include "CalendarDataSourceDialog.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CCalendarDataSourceDialog dialog
  13. CCalendarDataSourceDialog::CCalendarDataSourceDialog(CWnd* pParent /*=NULL*/)
  14. : CDialog(CCalendarDataSourceDialog::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(CCalendarDataSourceDialog)
  17. // NOTE: the ClassWizard will add member initialization here
  18. //}}AFX_DATA_INIT
  19. }
  20. void CCalendarDataSourceDialog::DoDataExchange(CDataExchange* pDX)
  21. {
  22. CDialog::DoDataExchange(pDX);
  23. //{{AFX_DATA_MAP(CCalendarDataSourceDialog)
  24. DDX_Control(pDX, IDC_CONNECTION_STRING_EDIT, m_ctrlConnectionString);
  25. //}}AFX_DATA_MAP
  26. }
  27. BEGIN_MESSAGE_MAP(CCalendarDataSourceDialog, CDialog)
  28. //{{AFX_MSG_MAP(CCalendarDataSourceDialog)
  29. //}}AFX_MSG_MAP
  30. END_MESSAGE_MAP()
  31. /////////////////////////////////////////////////////////////////////////////
  32. // CCalendarDataSourceDialog message handlers
  33. void CCalendarDataSourceDialog::OnOK() 
  34. {
  35. m_ctrlConnectionString.GetWindowText(m_strConnectionString);
  36. CDialog::OnOK();
  37. }
  38. BOOL CCalendarDataSourceDialog::OnInitDialog() 
  39. {
  40. CDialog::OnInitDialog();
  41. m_ctrlConnectionString.SetWindowText(m_strConnectionString);
  42. return TRUE;  // return TRUE unless you set the focus to a control
  43.               // EXCEPTION: OCX Property Pages should return FALSE
  44. }