ExcelAccess.cpp
上传用户:aymxxn
上传日期:2014-11-29
资源大小:135k
文件大小:3k
源码类别:

文件操作

开发平台:

Visual C++

  1. //////////////////////////////////////////////////////////////////////////////
  2. //类名:CExcelAccessApp
  3. //功能:应用程序的初始化
  4. //作者:徐景周(jingzhou_xu@163.net)
  5. //组织:未来工作室(Future Studio)
  6. //日期:2003.5.1
  7. /////////////////////////////////////////////////////////////////////////////
  8. #include "stdafx.h"
  9. #include "ExcelAccess.h"
  10. #include "ExcelAccessDlg.h"
  11. #ifdef _DEBUG
  12. #define new DEBUG_NEW
  13. #undef THIS_FILE
  14. static char THIS_FILE[] = __FILE__;
  15. #endif
  16. /////////////////////////////////////////////////////////////////////////////
  17. // CExcelAccessApp
  18. BEGIN_MESSAGE_MAP(CExcelAccessApp, CWinApp)
  19. //{{AFX_MSG_MAP(CExcelAccessApp)
  20. // NOTE - the ClassWizard will add and remove mapping macros here.
  21. //    DO NOT EDIT what you see in these blocks of generated code!
  22. //}}AFX_MSG
  23. ON_COMMAND(ID_HELP, CWinApp::OnHelp)
  24. END_MESSAGE_MAP()
  25. /////////////////////////////////////////////////////////////////////////////
  26. // CExcelAccessApp construction
  27. CExcelAccessApp::CExcelAccessApp()
  28. {
  29. // TODO: add construction code here,
  30. // Place all significant initialization in InitInstance
  31. }
  32. /////////////////////////////////////////////////////////////////////////////
  33. // The one and only CExcelAccessApp object
  34. CExcelAccessApp theApp;
  35. //////////////////////////////////////////////////////////////////////////////
  36. //名称:InitInstance
  37. //功能:初始化程序实例
  38. //作者:徐景周(jingzhou_xu@163.net)
  39. //组织:未来工作室(Future Studio)
  40. //日期:2003.5.1
  41. /////////////////////////////////////////////////////////////////////////////
  42. BOOL CExcelAccessApp::InitInstance()
  43. {
  44. AfxEnableControlContainer();
  45. // Standard initialization
  46. // If you are not using these features and wish to reduce the size
  47. //  of your final executable, you should remove from the following
  48. //  the specific initialization routines you do not need.
  49. #ifdef _AFXDLL
  50. Enable3dControls(); // Call this when using MFC in a shared DLL
  51. #else
  52. Enable3dControlsStatic(); // Call this when linking to MFC statically
  53. #endif
  54. //此程序只能运行一次,用互斥量来判断程序是否已运行
  55.     HANDLE m_hMutex=CreateMutex(NULL,TRUE, m_pszAppName); 
  56.     if(GetLastError()==ERROR_ALREADY_EXISTS)
  57. AfxMessageBox("Excel文件操作示例程序已经运行!");
  58. return FALSE; 
  59. }
  60. //设置对话框背景和文本颜色
  61. SetDialogBkColor(RGB(160,180,220),RGB(0,0,0));
  62. CExcelAccessDlg dlg;
  63. m_pMainWnd = &dlg;
  64. int nResponse = dlg.DoModal();
  65. if (nResponse == IDOK)
  66. {
  67. // TODO: Place code here to handle when the dialog is
  68. //  dismissed with OK
  69. }
  70. else if (nResponse == IDCANCEL)
  71. {
  72. // TODO: Place code here to handle when the dialog is
  73. //  dismissed with Cancel
  74. }
  75. // Since the dialog has been closed, return FALSE so that we exit the
  76. //  application, rather than start the application's message pump.
  77. return FALSE;
  78. }