⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 libdlg.h

📁 简单的图书管理系统
💻 H
字号:
// LibDlg.h : header file
//

#if !defined(AFX_LIBDLG_H__24DD4263_F8CD_46E0_9FC8_C74022F3DDBE__INCLUDED_)
#define AFX_LIBDLG_H__24DD4263_F8CD_46E0_9FC8_C74022F3DDBE__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "BLink.h"
#include "RLink.h"
/////////////////////////////////////////////////////////////////////////////
// CLibDlg dialog



class CLibDlg : public CDialog
{
// Construction
public:
	CLibDlg(CWnd* pParent = NULL);	// standard constructor
	CBLink Book;
	int Blink_No;//节点个数
	int Blist_No;//节点在链表中的排序
	LinkB BHead;
	LinkB BLast;
	CString BCode;
	CString BKind;
	CString BPress;
	CString BName;
	CString BAuthor;
	CString BDate;
	CString BISDN;
	CString BTimes;
	CString BPrice;
	CString BQuan;
	CString Borrower;
	CFile PbText;

	CRLink Reader;
	int Rlink_No;
	int Rlist_No;
	LinkR RHead;
	LinkR RLast;
	CString RCode;
	CString RName;
	CString RCompany;
	CString RKind;
	CString RBooks;
	CFile RbText;


// Dialog Data
	//{{AFX_DATA(CLibDlg)
	enum { IDD = IDD_LIB_DIALOG };
	CListBox	m_List_Book;
	CListBox	m_List_Reader;
	CString	m_BCode;
	CString	m_BKind;
	CString	m_BPress;
	CString	m_BName;
	CString	m_BAuthor;
	CString	m_BDate;
	CString	m_BISDN;
	CString	m_BTimes;
	CString	m_BPrice;
	CString	m_BQuan;
	CString	m_RCode;
	CString	m_RName;
	CString	m_RCompany;
	CString	m_RKind;
	CString	m_RBooks;
	//}}AFX_DATA

	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CLibDlg)
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);	// DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
protected:
	HICON m_hIcon;

	// Generated message map functions
	//{{AFX_MSG(CLibDlg)
	virtual BOOL OnInitDialog();
	afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
	afx_msg void OnPaint();
	afx_msg HCURSOR OnQueryDragIcon();
	afx_msg void OnBInsert();
	afx_msg void OnBDel();
	afx_msg void OnBModify();
	afx_msg void OnBOut();
	afx_msg void OnBIn();
	afx_msg void OnBStat();
	afx_msg void OnRInsert();
	afx_msg void OnRDel();
	afx_msg void OnRModify();
	afx_msg void OnDblclkListBook();
	afx_msg void OnDblclkListReader();
	afx_msg void OnBLoad();
	afx_msg void OnBSave();
	afx_msg void OnRLoad();
	afx_msg void OnRSave();
	afx_msg void OnBShowlist();
	afx_msg void OnBFind();
	afx_msg void OnRShowlist();
	afx_msg void OnRFind();
	afx_msg void OnRStat();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_LIBDLG_H__24DD4263_F8CD_46E0_9FC8_C74022F3DDBE__INCLUDED_)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -