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

📄 borrowerdlg.h

📁 管理员登录功能;读者借阅模块;读者归还模块;书籍信息模块
💻 H
字号:
#if !defined(AFX_BORROWERDLG_H__A7E732AA_B29A_4449_970F_ABE46D4480D9__INCLUDED_)
#define AFX_BORROWERDLG_H__A7E732AA_B29A_4449_970F_ABE46D4480D9__INCLUDED_
#include "ADOConn.h"
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// BorrowerDlg.h : header file
//

/////////////////////////////////////////////////////////////////////////////
// CBorrowerDlg dialog

class CBorrowerDlg : public CDialog
{
// Construction
public:
	CBorrowerDlg(CWnd* pParent = NULL);   // standard constructor
	void InsertData(CString strBorrowerID, CString strBorrowerName);
	void DeleteData(CString strBorrowerID);
	void ModifyData(CString strOldBorrowerID,CString strBorrowerID,CString strBorrowerName);

	BOOL JudgeBorrowerID(CString strBorrowerID);
	void AddList(CString strBorrowerID, CString strBorrowerName);
	void ModifyList(CString strBorrowerID, CString strBorrowerName);
	void InitList();
	void ShowList();



// Dialog Data
	//{{AFX_DATA(CBorrowerDlg)
	enum { IDD = IDD_BORROWER_DIALOG };
	CListCtrl	m_list;
	//}}AFX_DATA


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

// Implementation
private:
	ADOConn m_AdoConn;
protected:

	// Generated message map functions
	//{{AFX_MSG(CBorrowerDlg)
	afx_msg void OnAddButton();
	afx_msg void OnModifyButton();
	afx_msg void OnDelButton();
	afx_msg void OnExitButton();
	virtual BOOL OnInitDialog();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

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

#endif // !defined(AFX_BORROWERDLG_H__A7E732AA_B29A_4449_970F_ABE46D4480D9__INCLUDED_)

⌨️ 快捷键说明

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