sitedate.cpp
来自「无线图象监控系统(用VC++编程)用数据库ACCESS存储图象」· C++ 代码 · 共 96 行
CPP
96 行
// SiteDate.cpp : implementation file
//
#include "stdafx.h"
#include "MoinorCentre.h"
#include "SiteDate.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CSiteDate dialog
CSiteDate::CSiteDate(CWnd* pParent /*=NULL*/)
: CDialog(CSiteDate::IDD, pParent)
{
//{{AFX_DATA_INIT(CSiteDate)
// NOTE: the ClassWizard will add member initialization here
//}}AFX_DATA_INIT
}
void CSiteDate::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CSiteDate)
// NOTE: the ClassWizard will add DDX and DDV calls here
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CSiteDate, CDialog)
//{{AFX_MSG_MAP(CSiteDate)
ON_BN_CLICKED(IDC_ADD, OnAdd)
ON_BN_CLICKED(IDC_DEL, OnDel)
ON_BN_CLICKED(IDC_FINISH, OnFinish)
ON_BN_CLICKED(IDC_FORWAED, OnForwaed)
ON_BN_CLICKED(IDC_BACK, OnBack)
ON_BN_CLICKED(IDC_OPENTABLE, OnOpentable)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CSiteDate message handlers
void CSiteDate::OnAdd()
{ // TODO: Add your control notification handler code here
}
void CSiteDate::OnDel()
{
// TODO: Add your control notification handler code here
}
void CSiteDate::OnFinish()
{
// TODO: Add your control notification handler code here
}
void CSiteDate::OnCancel()
{
// TODO: Add extra cleanup here
DestroyWindow();
}
void CSiteDate::OnOK()
{
// TODO: Add extra validation here
DestroyWindow();
}
void CSiteDate::OnForwaed()
{
// TODO: Add your control notification handler code here
}
void CSiteDate::OnBack()
{
// TODO: Add your control notification handler code here
}
void CSiteDate::OnOpentable()
{
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?