scoregather.h

来自「一个学生考试成绩管理的半成品」· C头文件 代码 · 共 47 行

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

#ifndef __AFXWIN_H__
	#error 在包含用于 PCH 的此文件之前包含“stdafx.h” 
#endif
#include "resource.h"       // 主符号


// CScoreGatherApp:
// 有关此类的实现,请参阅 ScoreGather.cpp
//

class CScoreGatherApp : public CWinApp
{
public:
	CScoreGatherApp();
	_ConnectionPtr  m_pConn;
	CString connString;
	_RecordsetPtr m_pIDRecordset;
	BOOL makedatabase();
	int MakeSQLServerODBCDSN(LPCTSTR strDBServer,LPCTSTR strDBName,LPCTSTR strDSN,LPCTSTR strUID);

// 重写
public:
	virtual BOOL InitInstance();
	afx_msg void OnAppAbout();
	DECLARE_MESSAGE_MAP()
	afx_msg void OnSystemset();
	afx_msg void OnDataset();
	afx_msg void OnDataedit();
	afx_msg void OnInputdata();
	afx_msg void OnPrintdata();
	afx_msg void OnWritegatherpage();
	afx_msg void OnOvergather();
	afx_msg void OnStart();
	afx_msg void OnDatasetQuery();
	afx_msg void OnDataEditQuery();
	afx_msg void OnWriteGatherQuery();
	afx_msg void OnDatabackup();
	afx_msg void OnDatarestore();
	afx_msg void OnClsdata();
};

extern CScoreGatherApp theApp;

⌨️ 快捷键说明

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