56 lines
1.4 KiB
C
56 lines
1.4 KiB
C
|
#if !defined(AFX_DLG_SELSHEET_H__94B5E14F_A820_4B00_BDDE_31AEC8F72FFB__INCLUDED_)
|
||
|
#define AFX_DLG_SELSHEET_H__94B5E14F_A820_4B00_BDDE_31AEC8F72FFB__INCLUDED_
|
||
|
|
||
|
#if _MSC_VER > 1000
|
||
|
#pragma once
|
||
|
#endif // _MSC_VER > 1000
|
||
|
// DLG_SelSheet.h : header file
|
||
|
//
|
||
|
|
||
|
/////////////////////////////////////////////////////////////////////////////
|
||
|
// DLG_SelSheet dialog
|
||
|
#include "..\public\reportctrl\ReportCtrl.h"
|
||
|
|
||
|
class DLG_SelSheet : public CDialog
|
||
|
{
|
||
|
// Construction
|
||
|
public:
|
||
|
CImageList m_Image;
|
||
|
CStringArray * m_pSheet;
|
||
|
CString m_strTable;
|
||
|
|
||
|
public:
|
||
|
void SetParam(CStringArray * pSheet);
|
||
|
DLG_SelSheet(CWnd* pParent = NULL); // standard constructor
|
||
|
|
||
|
// Dialog Data
|
||
|
//{{AFX_DATA(DLG_SelSheet)
|
||
|
enum { IDD = IDD_SELSHEET };
|
||
|
CReportCtrl m_wndList;
|
||
|
//}}AFX_DATA
|
||
|
|
||
|
|
||
|
// Overrides
|
||
|
// ClassWizard generated virtual function overrides
|
||
|
//{{AFX_VIRTUAL(DLG_SelSheet)
|
||
|
protected:
|
||
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
||
|
//}}AFX_VIRTUAL
|
||
|
|
||
|
// Implementation
|
||
|
protected:
|
||
|
|
||
|
// Generated message map functions
|
||
|
//{{AFX_MSG(DLG_SelSheet)
|
||
|
afx_msg void OnDblclkSelsheetList(NMHDR* pNMHDR, LRESULT* pResult);
|
||
|
virtual BOOL OnInitDialog();
|
||
|
virtual void OnOK();
|
||
|
//}}AFX_MSG
|
||
|
DECLARE_MESSAGE_MAP()
|
||
|
};
|
||
|
|
||
|
//{{AFX_INSERT_LOCATION}}
|
||
|
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
|
||
|
|
||
|
#endif // !defined(AFX_DLG_SELSHEET_H__94B5E14F_A820_4B00_BDDE_31AEC8F72FFB__INCLUDED_)
|