1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- #if !defined(AFX_ONEDLG_H__2D48DF93_1C22_41C3_9593_89AC249A6E79__INCLUDED_)
- #define AFX_ONEDLG_H__2D48DF93_1C22_41C3_9593_89AC249A6E79__INCLUDED_
- #include "Picture.h"
- #if _MSC_VER > 1000
- #pragma once
- #endif
- class COneDlg : public CDialog
- {
- public:
- CPicture m_Pic;
- _RecordsetPtr m_pRecordset;
- COneDlg(CWnd* pParent = NULL);
-
- enum { IDD = IDD_ONE_DIALOG };
-
-
-
-
- protected:
- virtual void DoDataExchange(CDataExchange* pDX);
-
- protected:
- HICON m_hIcon;
-
-
- virtual BOOL OnInitDialog();
- afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
- afx_msg void OnPaint();
- afx_msg HCURSOR OnQueryDragIcon();
- afx_msg void OnButton1();
- afx_msg void OnButton2();
- afx_msg void OnButton3();
- afx_msg void OnButton4();
-
- DECLARE_MESSAGE_MAP()
- };
- #endif
|