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

📄 delete_dlg.cpp

📁 使用OBDC的数据库小程序~是我学习VC+数据库的第一个小程序~对初学者很有用~
💻 CPP
字号:
// Delete_Dlg.cpp : implementation file
//

#include "stdafx.h"
#include "OBDC1.h"
#include "Delete_Dlg.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// Delete_Dlg dialog


Delete_Dlg::Delete_Dlg(CWnd* pParent /*=NULL*/)
	: CDialog(Delete_Dlg::IDD, pParent)
{
	//{{AFX_DATA_INIT(Delete_Dlg)
		// NOTE: the ClassWizard will add member initialization here
	//}}AFX_DATA_INIT
}


void Delete_Dlg::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(Delete_Dlg)
		// NOTE: the ClassWizard will add DDX and DDV calls here
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(Delete_Dlg, CDialog)
	//{{AFX_MSG_MAP(Delete_Dlg)
	ON_BN_CLICKED(IDC_BUTTON1, OnButton1)
	ON_BN_CLICKED(IDC_BUTTON2, OnButton2)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// Delete_Dlg message handlers

void Delete_Dlg::OnButton1() 
{
	// TODO: Add your control notification handler code here
	CDialog::OnOK();	
}

void Delete_Dlg::OnButton2() 
{
	// TODO: Add your control notification handler code here
	CDialog::OnCancel();	
}

⌨️ 快捷键说明

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