⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sitedate.cpp

📁 无线图象监控系统(用VC++编程)用数据库ACCESS存储图象
💻 CPP
字号:
// 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -