📄 libmgrdlg.h
字号:
// LibMgrDlg.h : header file
//
#if !defined(AFX_LIBMGRDLG_H__267016B5_A3E5_48C2_9595_30D7286F97D9__INCLUDED_)
#define AFX_LIBMGRDLG_H__267016B5_A3E5_48C2_9595_30D7286F97D9__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
typedef struct RNode
{
CString Num;//借书证号
CString Name;//读者姓名
CString Unit;//读者单位
int id;//读者身份
int sum;//已借册数
CString bro[10];//已接书编号
struct RNode *Next;
}*RLink;
typedef struct BNode
{
CString Num;
CString Lable;
CString Name;
CString Author;
CString Pub;
CString Date;
CString Price;
int tag; //预约标记tag为1时被预约,0未被预约
int onshelf; //借阅标记onshelf为1时借出,0时在库
CString RNum; //借走该书的借书证号
CString YNum; //预约该书的借书证号
struct BNode *Next;
}*BLink;
/////////////////////////////////////////////////////////////////////////////
// CLibMgrDlg dialog
class CLibMgrDlg : public CDialog
{
// Construction
public:
CLibMgrDlg(CWnd* pParent = NULL); // standard constructor
// Dialog Data
//{{AFX_DATA(CLibMgrDlg)
enum { IDD = IDD_LIBMGR_DIALOG };
// NOTE: the ClassWizard will add data members here
//}}AFX_DATA
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CLibMgrDlg)
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
protected:
HICON m_hIcon;
// Generated message map functions
//{{AFX_MSG(CLibMgrDlg)
virtual BOOL OnInitDialog();
afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
afx_msg void OnPaint();
afx_msg HCURSOR OnQueryDragIcon();
afx_msg void OnBmbutton();
afx_msg void OnRmbutton();
afx_msg void OnBrobutton();
afx_msg void OnBackbutton();
afx_msg void OnStatbutton();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_LIBMGRDLG_H__267016B5_A3E5_48C2_9595_30D7286F97D9__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -