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

📄 dbbakdlg.cpp

📁 VC++ 开发的一个大型进销存管理系统,并附带有Visio的数据库开发模型,商品采用分类管理.但是各位同仁需要注意,本系统的开发过程是基于VC++6.0 SQL Server2000的基础之上开发的.
💻 CPP
字号:
// DBBakDlg.cpp : implementation file
//

#include "stdafx.h"
#include "QGZX_InfoPlat.h"
#include "DBBakDlg.h"

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

/////////////////////////////////////////////////////////////////////////////
// CDBBakDlg property page

IMPLEMENT_DYNCREATE(CDBBakDlg, CPropertyPage)

CDBBakDlg::CDBBakDlg() : CPropertyPage(CDBBakDlg::IDD)
{
	//{{AFX_DATA_INIT(CDBBakDlg)
		// NOTE: the ClassWizard will add member initialization here
	//}}AFX_DATA_INIT
}

CDBBakDlg::~CDBBakDlg()
{
}

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


BEGIN_MESSAGE_MAP(CDBBakDlg, CPropertyPage)
	//{{AFX_MSG_MAP(CDBBakDlg)
	ON_BN_CLICKED(IDC_BTN_BAK, OnBtnBak)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CDBBakDlg message handlers

void CDBBakDlg::OnBtnBak() 
{
	// TODO: Add your control notification handler code here
//m_ds->ExecuteOther("Backup database Snc_InfoPlat to disk = 'D:\\abcd.bak' with init");
//不加上with init则追加到该设备
//restore   database   testdb   from   disk   =   c:\testdb.dat   with   move 
//还原数据库
}

⌨️ 快捷键说明

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