?? borrowcommand.h
字號:
// BorrowCommand.h: interface for the CBorrowCommand class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_BORROWCOMMAND_H__8C24709B_A8C8_46CD_A97D_61224786B460__INCLUDED_)
#define AFX_BORROWCOMMAND_H__8C24709B_A8C8_46CD_A97D_61224786B460__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "DBCommand.h"
class CBorrowCommand : public CDBCommand
{
public:
//進行借用
//返回值為借用號
CString DoBorrow();
//各項借用信息
CString m_MaterialNum;
CString m_Count;
CString m_Department;
CString m_Use;
CString m_State;
CString m_Jsr;
CString m_Lqr;
CBorrowCommand();
virtual ~CBorrowCommand();
private:
//得到當前最大借用號
int GetMaxBorrowID();
};
#endif // !defined(AFX_BORROWCOMMAND_H__8C24709B_A8C8_46CD_A97D_61224786B460__INCLUDED_)
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -