DAOVIEW.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:2k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // DaoView.h : main header file for the DAOVIEW application
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. #ifndef __AFXWIN_H__
  13. #error include 'stdafx.h' before including this file for PCH
  14. #endif
  15. #include "resource.h"       // main symbols
  16. #include "DaovwDoc.h"       // Document
  17. #include "Crack.h"          // Type conversion helpers
  18. #include "TreeView.h"       // Left hand side view
  19. #include "ListView.h"       // Right hand side view
  20. /////////////////////////////////////////////////////////////////////////////
  21. // CDaoViewApp:
  22. // See DaoView.cpp for the implementation of this class
  23. //
  24. class CDaoViewApp : public CWinApp
  25. {
  26. public:
  27. CDaoViewApp();
  28. BOOL m_bShowSystemObjects;
  29. BOOL m_bShowWarnings;
  30. BOOL m_bOpenODBC;
  31. BOOL m_nMaxRecords;
  32. // Overrides
  33. // ClassWizard generated virtual function overrides
  34. //{{AFX_VIRTUAL(CDaoViewApp)
  35. public:
  36. virtual BOOL InitInstance();
  37. //}}AFX_VIRTUAL
  38. // Implementation
  39. //{{AFX_MSG(CDaoViewApp)
  40. afx_msg void OnAppAbout();
  41. // NOTE - the ClassWizard will add and remove member functions here.
  42. //    DO NOT EDIT what you see in these blocks of generated code !
  43. //}}AFX_MSG
  44. DECLARE_MESSAGE_MAP()
  45. };
  46. /////////////////////////////////////////////////////////////////////////////
  47. void DisplayDaoException(CDaoException* e);