indent.h

来自「用VC做的订单管理系统,可以实现网络订单的各种功能」· C头文件 代码 · 共 70 行

H
70
字号
// Indent.h : main header file for the INDENT application
//

#if !defined(AFX_INDENT_H__BD3D6874_160E_4331_848E_63DA02410AAC__INCLUDED_)
#define AFX_INDENT_H__BD3D6874_160E_4331_848E_63DA02410AAC__INCLUDED_

#include "Ado.h"	// Added by ClassView
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#ifndef __AFXWIN_H__
	#error include 'stdafx.h' before including this file for PCH
#endif

#include "resource.h"       // main symbols

/////////////////////////////////////////////////////////////////////////////
// CIndentApp:
// See Indent.cpp for the implementation of this class
//

class CIndentApp : public CWinApp
{
public:

	CString m_strNo; //编号
	int m_nItem;     //当前记录ID
	CString m_strBeginTime;
	CString m_strEndTime;

	CAdo m_ado;
	CIndentApp();
	virtual ~CIndentApp();

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CIndentApp)
	public:
	virtual BOOL InitInstance();
	virtual BOOL PreTranslateMessage(MSG* pMsg);
	//}}AFX_VIRTUAL
	void OnIndentOpenRecord();
// Implementation
	//{{AFX_MSG(CIndentApp)
	afx_msg void OnAppAbout();
	afx_msg void OnIndentNewRecord();
	afx_msg void OnIndentQueryRecord();
	afx_msg void OnAppWeb();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()



public:
	CMultiDocTemplate* m_pQueryRecord;
	CMultiDocTemplate* m_pAddRecord;
	CMultiDocTemplate* m_pEditRecord;


};


/////////////////////////////////////////////////////////////////////////////

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

#endif // !defined(AFX_INDENT_H__BD3D6874_160E_4331_848E_63DA02410AAC__INCLUDED_)

⌨️ 快捷键说明

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