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

Windows编程

开发平台:

Visual C++

  1. // DaoEditCtl.h : Declaration of the CDaoEditCtrl OLE control class.
  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. /////////////////////////////////////////////////////////////////////////////
  13. // CDaoEditCtrl : See DaoEditCtl.cpp for implementation.
  14. class CDaoEditCtrl : public COleControl
  15. {
  16. DECLARE_DYNCREATE(CDaoEditCtrl)
  17. // Constructor
  18. public:
  19. CDaoEditCtrl();
  20. // Overrides
  21. // Drawing function
  22. virtual void OnDraw(
  23. CDC* pdc, const CRect& rcBounds, const CRect& rcInvalid);
  24. // Persistence
  25. virtual void DoPropExchange(CPropExchange* pPX);
  26. // Reset control state
  27. virtual void OnResetState();
  28. // Implementation
  29. protected:
  30. ~CDaoEditCtrl();
  31. DECLARE_OLECREATE_EX(CDaoEditCtrl)    // Class factory and guid
  32. DECLARE_OLETYPELIB(CDaoEditCtrl)      // GetTypeInfo
  33. DECLARE_PROPPAGEIDS(CDaoEditCtrl)     // Property page IDs
  34. DECLARE_OLECTLTYPE(CDaoEditCtrl)        // Type name and misc status
  35. // Subclassed control support
  36. BOOL PreCreateWindow(CREATESTRUCT& cs);
  37. BOOL IsSubclassedControl();
  38. LRESULT OnOcmCommand(WPARAM wParam, LPARAM lParam);
  39. // Implementation
  40. BOOL m_bDirty;
  41. // Message maps
  42. //{{AFX_MSG(CDaoEditCtrl)
  43. afx_msg void OnKillFocus(CWnd* pNewWnd);
  44. afx_msg void OnChar(UINT nChar, UINT nRepCnt, UINT nFlags);
  45. afx_msg void OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags);
  46. //}}AFX_MSG
  47. DECLARE_MESSAGE_MAP()
  48. // Dispatch maps
  49. //{{AFX_DISPATCH(CDaoEditCtrl)
  50. CString m_strFieldName;
  51. //}}AFX_DISPATCH
  52. DECLARE_DISPATCH_MAP()
  53. afx_msg void AboutBox();
  54. // Event maps
  55. //{{AFX_EVENT(CDaoEditCtrl)
  56. //}}AFX_EVENT
  57. DECLARE_EVENT_MAP()
  58. // Dispatch and event IDs
  59. public:
  60. enum {
  61. //{{AFX_DISP_ID(CDaoEditCtrl)
  62. dispidFieldName = 1L,
  63. //}}AFX_DISP_ID
  64. };
  65. };