MyAccount.h 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. #if !defined(AFX_MyAccount_H__ACD9E9EA_B724_4711_9C6F_DE3ADA090E2E__INCLUDED_)
  2. #define AFX_MyAccount_H__ACD9E9EA_B724_4711_9C6F_DE3ADA090E2E__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // MyAccount.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // MyAccount form view
  10. #ifndef __AFXEXT_H__
  11. #include <afxext.h>
  12. #endif
  13. class MyAccount : public CFormView
  14. {
  15. protected:
  16. MyAccount(); // protected constructor used by dynamic creation
  17. DECLARE_DYNCREATE(MyAccount)
  18. // Form Data
  19. public:
  20. //{{AFX_DATA(MyAccount)
  21. enum { IDD = IDD_DLGMyAccount };
  22. //}}AFX_DATA
  23. // Attributes
  24. public:
  25. // Operations
  26. public:
  27. void QueryOK();
  28. void FillGrid(BOOL bStatus=0);
  29. // Overrides
  30. // ClassWizard generated virtual function overrides
  31. //{{AFX_VIRTUAL(MyAccount)
  32. public:
  33. virtual void OnInitialUpdate();
  34. virtual BOOL PreTranslateMessage(MSG* pMsg);
  35. protected:
  36. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  37. //}}AFX_VIRTUAL
  38. // Implementation
  39. protected:
  40. virtual ~MyAccount();
  41. #ifdef _DEBUG
  42. virtual void AssertValid() const;
  43. virtual void Dump(CDumpContext& dc) const;
  44. #endif
  45. // Generated message map functions
  46. //{{AFX_MSG(MyAccount)
  47. afx_msg void OnButton2();
  48. afx_msg void OnTimer(UINT nIDEvent);
  49. //}}AFX_MSG
  50. DECLARE_MESSAGE_MAP()
  51. };
  52. /////////////////////////////////////////////////////////////////////////////
  53. //{{AFX_INSERT_LOCATION}}
  54. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  55. #endif // !defined(AFX_MyAccount_H__ACD9E9EA_B724_4711_9C6F_DE3ADA090E2E__INCLUDED_)