readadress.h

来自「一个可以读取Access数据库表的简单实例.可应用于办公室系统中.」· C头文件 代码 · 共 40 行

H
40
字号
// ReadAdress.h : ReadAdress 应用程序的主头文件
//
#pragma once

#ifndef __AFXWIN_H__
	#error 在包含用于 PCH 的此文件之前包含“stdafx.h” 
#endif

#include "resource.h"       // 主符号
#include "Ado_Access.h"
#include "ReadAdressView.h"


// CReadAdressApp:
// 有关此类的实现,请参阅 ReadAdress.cpp
//

class CReadAdressApp : public CWinApp
{
public:

	CAdo		Ado ;
	CReadAdressView		* gEditView ;

public:
	CReadAdressApp();


// 重写
public:
	virtual BOOL InitInstance();

// 实现
	afx_msg void OnAppAbout();
	DECLARE_MESSAGE_MAP()
	afx_msg void ExitApp();
};

extern CReadAdressApp theApp;

⌨️ 快捷键说明

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