87 lines
2.1 KiB
C++
87 lines
2.1 KiB
C++
#if !defined(AFX_SNR_H__640A17A1_4127_11D4_964F_00C0F02C4B69__INCLUDED_)
|
|
#define AFX_SNR_H__640A17A1_4127_11D4_964F_00C0F02C4B69__INCLUDED_
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif // _MSC_VER > 1000
|
|
// SnR.h : header file
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CSnR form view
|
|
|
|
#ifndef __AFXEXT_H__
|
|
#include <afxext.h>
|
|
#endif
|
|
|
|
#include "ReportCtrl.h"
|
|
#include "gzrset.h"
|
|
#include "gzk.h"
|
|
#include "afxwin.h"
|
|
|
|
class CSnR : public CFormView
|
|
{
|
|
public:
|
|
CSnR(); // protected constructor used by dynamic creation
|
|
DECLARE_DYNCREATE(CSnR)
|
|
GZRset* rs;
|
|
CSpApp* m_pApp;
|
|
void OnRvnItemDbClick(NMHDR* pNMHDR, LRESULT* pResult);
|
|
// Form Data
|
|
public:
|
|
//{{AFX_DATA(CSnR)
|
|
enum { IDD = IDD_SNR_FORM };
|
|
CReportCtrl m_rc;
|
|
// NOTE: the ClassWizard will add data members here
|
|
//}}AFX_DATA
|
|
|
|
// Attributes
|
|
public:
|
|
|
|
// Operations
|
|
public:
|
|
CString m_strCrit;
|
|
void FillView();
|
|
void DeActivate();
|
|
void Activate();
|
|
|
|
// Overrides
|
|
// ClassWizard generated virtual function overrides
|
|
//{{AFX_VIRTUAL(CSnR)
|
|
public:
|
|
virtual void OnInitialUpdate();
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
|
//}}AFX_VIRTUAL
|
|
|
|
// Implementation
|
|
protected:
|
|
CImageList m_ilReport;
|
|
virtual ~CSnR();
|
|
#ifdef _DEBUG
|
|
virtual void AssertValid() const;
|
|
virtual void Dump(CDumpContext& dc) const;
|
|
#endif
|
|
|
|
// Generated message map functions
|
|
//{{AFX_MSG(CSnR)
|
|
// NOTE - the ClassWizard will add and remove member functions here.
|
|
//}}AFX_MSG
|
|
DECLARE_MESSAGE_MAP()
|
|
public:
|
|
void LayoutControls(void);
|
|
|
|
int m_nCX;
|
|
afx_msg void OnSize(UINT nType, int cx, int cy);
|
|
CButton m_ckShowCompleted;
|
|
afx_msg void OnBnClickedCkshowcompleted();
|
|
afx_msg BOOL OnHelpInfo(HELPINFO* pHelpInfo);
|
|
};
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
//{{AFX_INSERT_LOCATION}}
|
|
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
|
|
|
|
#endif // !defined(AFX_SNR_H__640A17A1_4127_11D4_964F_00C0F02C4B69__INCLUDED_)
|