72 lines
1.8 KiB
C++
72 lines
1.8 KiB
C++
#if !defined(AFX_DLG_FINDSR_H__E47A5F52_89BB_4A3F_9FA7_75487FFAFD48__INCLUDED_)
|
|
#define AFX_DLG_FINDSR_H__E47A5F52_89BB_4A3F_9FA7_75487FFAFD48__INCLUDED_
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif // _MSC_VER > 1000
|
|
// DLG_FindSR.h : header file
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// DLG_FindSR dialog
|
|
#include "..\public\reportctrl\ReportCtrl.h"
|
|
|
|
#define MENU_FINDSR_DEL WM_USER+250
|
|
|
|
class CMainFrame;
|
|
class DLG_FindSR : public CDialog
|
|
{
|
|
public:
|
|
CMainFrame * m_pMainFrame;
|
|
BOOL m_bHasGAddress;
|
|
BOOL m_bHasPAddress;
|
|
CImageList m_Image;
|
|
// Construction
|
|
public:
|
|
void ShowRMenu();
|
|
void SetParam(BOOL bGAddress,BOOL bPAddress);
|
|
DLG_FindSR(CWnd* pParent = NULL); // standard constructor
|
|
|
|
// Dialog Data
|
|
//{{AFX_DATA(DLG_FindSR)
|
|
enum { IDD = IDD_FINDSR };
|
|
CButton m_S_S1;
|
|
CReportCtrl m_wndList;
|
|
BOOL m_bGAddress;
|
|
BOOL m_bPAddress;
|
|
int m_lMon;
|
|
int m_lDay;
|
|
int m_lDay2;
|
|
int m_lMon2;
|
|
//}}AFX_DATA
|
|
|
|
|
|
// Overrides
|
|
// ClassWizard generated virtual function overrides
|
|
//{{AFX_VIRTUAL(DLG_FindSR)
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
|
//}}AFX_VIRTUAL
|
|
|
|
// Implementation
|
|
protected:
|
|
|
|
// Generated message map functions
|
|
//{{AFX_MSG(DLG_FindSR)
|
|
virtual BOOL OnInitDialog();
|
|
afx_msg void OnFindsrGaddress();
|
|
afx_msg void OnFindsrPaddress();
|
|
afx_msg void OnFindsrFind();
|
|
afx_msg void OnFindsrAdd();
|
|
afx_msg void OnRclickFindsrList(NMHDR* pNMHDR, LRESULT* pResult);
|
|
afx_msg void OnKeydownFindsrList(NMHDR* pNMHDR, LRESULT* pResult);
|
|
//}}AFX_MSG
|
|
afx_msg void On_User_Del();
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|
|
|
|
//{{AFX_INSERT_LOCATION}}
|
|
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
|
|
|
|
#endif // !defined(AFX_DLG_FINDSR_H__E47A5F52_89BB_4A3F_9FA7_75487FFAFD48__INCLUDED_)
|