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

对话框与窗口

开发平台:

Visual C++

  1. // SQLServerDataProvider.cpp : Defines the class behaviors for the application.
  2. //
  3. #include "stdafx.h"
  4. #include "SQLServerDataProvider.h"
  5. #include "MainFrm.h"
  6. #include "SQLServerDataProviderDoc.h"
  7. #include "SQLServerDataProviderView.h"
  8. #include "CalendarDataSourceDialog.h"
  9. #ifdef _DEBUG
  10. #define new DEBUG_NEW
  11. #undef THIS_FILE
  12. static char THIS_FILE[] = __FILE__;
  13. #endif
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CSQLServerDataProviderApp
  16. BEGIN_MESSAGE_MAP(CSQLServerDataProviderApp, CWinApp)
  17. //{{AFX_MSG_MAP(CSQLServerDataProviderApp)
  18. ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
  19. ON_COMMAND(ID_FILE_OPEN, OnFileOpen)
  20. //}}AFX_MSG_MAP
  21. // Standard file based document commands
  22. ON_COMMAND(ID_FILE_NEW, CWinApp::OnFileNew)
  23. ON_COMMAND(ID_FILE_OPEN, CWinApp::OnFileOpen)
  24. // Standard print setup command
  25. ON_COMMAND(ID_FILE_PRINT_SETUP, CWinApp::OnFilePrintSetup)
  26. END_MESSAGE_MAP()
  27. /////////////////////////////////////////////////////////////////////////////
  28. // CSQLServerDataProviderApp construction
  29. CSQLServerDataProviderApp::CSQLServerDataProviderApp()
  30. {
  31. // TODO: add construction code here,
  32. // Place all significant initialization in InitInstance
  33. }
  34. /////////////////////////////////////////////////////////////////////////////
  35. // The one and only CSQLServerDataProviderApp object
  36. CSQLServerDataProviderApp theApp;
  37. /////////////////////////////////////////////////////////////////////////////
  38. // CSQLServerDataProviderApp initialization
  39. BOOL CSQLServerDataProviderApp::InitInstance()
  40. {
  41. VERIFY( AfxOleInit() );
  42. // Standard initialization
  43. // If you are not using these features and wish to reduce the size
  44. //  of your final executable, you should remove from the following
  45. //  the specific initialization routines you do not need.
  46. #if _MSC_VER <= 1200 //MFC 6.0 or earlier
  47. #ifdef _AFXDLL
  48. Enable3dControls(); // Call this when using MFC in a shared DLL
  49. #else
  50. Enable3dControlsStatic(); // Call this when linking to MFC statically
  51. #endif
  52. #endif
  53. // Change the registry key under which our settings are stored.
  54. // TODO: You should modify this string to be something appropriate
  55. // such as the name of your company or organization.
  56. SetRegistryKey(_T("Codejock Software Sample Applications"));
  57. LoadStdProfileSettings();  // Load standard INI file options (including MRU)
  58. // Register the application's document templates.  Document templates
  59. //  serve as the connection between documents, frame windows and views.
  60. CSingleDocTemplate* pDocTemplate;
  61. pDocTemplate = new CSingleDocTemplate(
  62. IDR_MAINFRAME,
  63. RUNTIME_CLASS(CSQLServerDataProviderDoc),
  64. RUNTIME_CLASS(CMainFrame),       // main SDI frame window
  65. RUNTIME_CLASS(CSQLServerDataProviderView));
  66. AddDocTemplate(pDocTemplate);
  67. // Parse command line for standard shell commands, DDE, file open
  68. CCommandLineInfo cmdInfo;
  69. ParseCommandLine(cmdInfo);
  70. // Dispatch commands specified on the command line
  71. if (!ProcessShellCommand(cmdInfo))
  72. return FALSE;
  73. // The one and only window has been initialized, so show and update it.
  74. m_pMainWnd->ShowWindow(SW_SHOW);
  75. m_pMainWnd->UpdateWindow();
  76. return TRUE;
  77. }
  78. /////////////////////////////////////////////////////////////////////////////
  79. // App command to run the dialog
  80. void CSQLServerDataProviderApp::OnAppAbout()
  81. {
  82. CAboutDlg aboutDlg;
  83. aboutDlg.DoModal();
  84. }
  85.  
  86. /////////////////////////////////////////////////////////////////////////////
  87. // CSQLServerDataProviderApp message handlers
  88. void CSQLServerDataProviderApp::OnFileOpen() 
  89. {
  90. CCalendarDataSourceDialog dlgDataSource;
  91. dlgDataSource.m_strConnectionString = AfxGetApp()->GetProfileString(csOptProfileSection, 
  92. csOptDataSourceSQLsrvProp, csOptDataSourceSQLsrvProp_default);
  93. //-----------------------------------------------------------------------
  94. if (dlgDataSource.DoModal() != IDOK) 
  95. {
  96. return;
  97. }
  98. //-----------------------------------------------------------------------
  99. AfxGetApp()->WriteProfileString(csOptProfileSection, csOptDataSourceSQLsrvProp, 
  100.     dlgDataSource.m_strConnectionString);
  101. OnFileNew();
  102. }