1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- #if !defined(AFX_DATAOPTION_H__36120F2D_53A8_49C6_B660_EF8883D2177E__INCLUDED_)
- #define AFX_DATAOPTION_H__36120F2D_53A8_49C6_B660_EF8883D2177E__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- // DataOpt.h : header file
- //
- /////////////////////////////////////////////////////////////////////////////
- // DataOpt dialog
- class DataOpt : public CDialog
- {
- // Construction
- public:
- DataOpt(CWnd* pParent = NULL); // standard constructor
- CString m_branch;
- int m_year;
- // Dialog Data
- //{{AFX_DATA(DataOpt)
- enum { IDD = IDD_DLGDataOption };
- CComboBox m_combo2;
- CComboBox m_combo1;
- BOOL m_check1;
- int m_radio1;
- //}}AFX_DATA
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(DataOpt)
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- //}}AFX_VIRTUAL
- // Implementation
- protected:
- // Generated message map functions
- //{{AFX_MSG(DataOpt)
- virtual BOOL OnInitDialog();
- virtual void OnOK();
- afx_msg void OnRadio1();
- afx_msg void OnRadio2();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
- //{{AFX_INSERT_LOCATION}}
- // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
- #endif // !defined(AFX_DATAOPTION_H__36120F2D_53A8_49C6_B660_EF8883D2177E__INCLUDED_)
|