一个学生考试成绩管理的半成品
源代码在线查看: scoregather.h
// 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;