oneDlg.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. // oneDlg.h : header file
  2. //
  3. #if !defined(AFX_ONEDLG_H__2D48DF93_1C22_41C3_9593_89AC249A6E79__INCLUDED_)
  4. #define AFX_ONEDLG_H__2D48DF93_1C22_41C3_9593_89AC249A6E79__INCLUDED_
  5. #include "Picture.h" // Added by ClassView
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. /////////////////////////////////////////////////////////////////////////////
  10. // COneDlg dialog
  11. class COneDlg : public CDialog
  12. {
  13. // Construction
  14. public:
  15. CPicture m_Pic;
  16. _RecordsetPtr m_pRecordset;
  17. COneDlg(CWnd* pParent = NULL); // standard constructor
  18. // Dialog Data
  19. //{{AFX_DATA(COneDlg)
  20. enum { IDD = IDD_ONE_DIALOG };
  21. // NOTE: the ClassWizard will add data members here
  22. //}}AFX_DATA
  23. // ClassWizard generated virtual function overrides
  24. //{{AFX_VIRTUAL(COneDlg)
  25. protected:
  26. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  27. //}}AFX_VIRTUAL
  28. // Implementation
  29. protected:
  30. HICON m_hIcon;
  31. // Generated message map functions
  32. //{{AFX_MSG(COneDlg)
  33. virtual BOOL OnInitDialog();
  34. afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  35. afx_msg void OnPaint();
  36. afx_msg HCURSOR OnQueryDragIcon();
  37. afx_msg void OnButton1();
  38. afx_msg void OnButton2();
  39. afx_msg void OnButton3();
  40. afx_msg void OnButton4();
  41. //}}AFX_MSG
  42. DECLARE_MESSAGE_MAP()
  43. };
  44. //{{AFX_INSERT_LOCATION}}
  45. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  46. #endif // !defined(AFX_ONEDLG_H__2D48DF93_1C22_41C3_9593_89AC249A6E79__INCLUDED_)