lendinfodlg.h

来自「用Visual C++ 开发的项目管理系统」· C头文件 代码 · 共 77 行

H
77
字号
//{{AFX_INCLUDES()
#include "datagrid1.h"
//}}AFX_INCLUDES
#if !defined(AFX_LENDINFODLG_H__B1802341_3B7F_4C03_AD09_18A0F1EEE0B7__INCLUDED_)
#define AFX_LENDINFODLG_H__B1802341_3B7F_4C03_AD09_18A0F1EEE0B7__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// LendInfoDlg.h : header file
//

#include "columns.h"
#include "column.h"
#include "LendChartDlg.h"
/////////////////////////////////////////////////////////////////////////////
// CLendInfoDlg dialog

class CLendInfoDlg : public CDialog
{
// Construction
public:
	BOOL m_IsSelUser;                 //是否选择了还档案用户
	CString m_RFileName;
	void SetColumnWidth(CDataGrid &ProControl, short count, float *WidthArray,CString * strTitle);
	CString m_LFileName;
	CLendInfoDlg(CWnd* pParent = NULL);   // standard constructor
	_RecordsetPtr m_RecordFileInfo;
	_RecordsetPtr m_RecordLendInfo;
	_RecordsetPtr m_RecordExist;         //名称为输入的存在记录
	_RecordsetPtr m_RecordLendChart;      //借阅记录表
	CStatic       m_IsStatic;           //是否存在输入的说明控件
	CFont         m_font;               //设置静态控件上的字体
	CString       m_cUser;              //归还档案的用户姓名

// Dialog Data
	//{{AFX_DATA(CLendInfoDlg)
	enum { IDD = IDD_DLG_LENDINFO };
	CButtonST	m_BtnExitControl;
	CButtonST	m_BtnReturnControl;
	CButtonST	m_BtnLendControl;
	CComboBox	m_RUserNameControl;
	CComboBox	m_RFileNameControl;
	CComboBox	m_LFileNameControl;
	CDataGrid	m_FileInfoControl;
	CDataGrid	m_LendInfoControl;
	//}}AFX_DATA


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

// Implementation
protected:

	// Generated message map functions
	//{{AFX_MSG(CLendInfoDlg)
	afx_msg void OnEditchangeComboLfilename();
	afx_msg void OnEditchangeComboRfilename();
	virtual BOOL OnInitDialog();
	afx_msg void OnBtnLend();
	afx_msg void OnBtnReturn();
	afx_msg void OnSelchangeComboRusername();
	afx_msg void OnPaint();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

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

#endif // !defined(AFX_LENDINFODLG_H__B1802341_3B7F_4C03_AD09_18A0F1EEE0B7__INCLUDED_)

⌨️ 快捷键说明

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