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

📄 sysmanage.cpp

📁 使用ODBC访问SQL数据库
💻 CPP
字号:
// SysManage.cpp : implementation file
//

#include "stdafx.h"
#include "testODBC4.h"
#include "SysManage.h"

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

/////////////////////////////////////////////////////////////////////////////
// CSysManage dialog


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


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


BEGIN_MESSAGE_MAP(CSysManage, CDialog)
	//{{AFX_MSG_MAP(CSysManage)
	ON_BN_CLICKED(IDC_BUTTON_Backup, OnBUTTONBackup)
	ON_BN_CLICKED(IDC_BUTTON_Exit, OnBUTTONExit)
	ON_BN_CLICKED(IDC_BUTTON_ChangeKey, OnBUTTONChangeKey)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CSysManage message handlers

void CSysManage::OnBUTTONBackup() 
{
	// TODO: Add your control notification handler code here
	
}

void CSysManage::OnBUTTONExit() 
{
	exit(0);	
}

void CSysManage::OnBUTTONChangeKey() 
{
	// TODO: Add your control notification handler code here
	
}

⌨️ 快捷键说明

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