This repository was archived by the owner on Mar 24, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathRefReport.h
More file actions
63 lines (48 loc) · 1.35 KB
/
RefReport.h
File metadata and controls
63 lines (48 loc) · 1.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#pragma once
#include "afxcmn.h"
#include "NDBViewDlg.h"
#include "NDBViewChildDlg.h"
// CRefReport dialog
class CRefReport : public CNDBViewChildDlg
{
DECLARE_DYNAMIC(CRefReport)
public:
CRefReport::CRefReport(BID bid, NDBViewer * pNDBViewer, CNDBViewDlg * pNDBViewDlg, CWnd* pParent = NULL);
virtual ~CRefReport();
// Dialog Data
enum { IDD = IDD_REF_REPORT };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
DECLARE_MESSAGE_MAP()
private:
CListCtrl m_lc;
CImageList m_il;
NDBViewer * m_pNDBViewer;
BID m_bid;
UINT m_cDiskRefCount;
UINT m_cCalculatedCount;
virtual BOOL OnInitDialog();
public:
void NBTPage(BTPAGE * pBTPage, PAGETRAILER * pPT, IB ib);
void BBTPage(BTPAGE * pBTPage, PAGETRAILER * pPT, IB ib);
public:
afx_msg void OnLvnDeleteitemList3(NMHDR *pNMHDR, LRESULT *pResult);
public:
afx_msg void OnNMDblclkList3(NMHDR *pNMHDR, LRESULT *pResult);
};
#pragma once
// CRefReportBID dialog
class CRefReportBID : public CDialog
{
DECLARE_DYNAMIC(CRefReportBID)
public:
CRefReportBID(CWnd* pParent = NULL); // standard constructor
virtual ~CRefReportBID();
// Dialog Data
enum { IDD = IDD_REF_REPORT_BID };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
DECLARE_MESSAGE_MAP()
public:
CString m_cs;
};