www.gusucode.com > VC++操作SqlServer数据库的参考源程序源码程序 > VC++操作SqlServer数据库的参考源程序源码程序/code/SetPass1.cpp

    // SetPass1.cpp : implementation file
// Download by http://www.NewXing.com

#include "stdafx.h"
#include "Student.h"
#include "SetPass1.h"

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

/////////////////////////////////////////////////////////////////////////////
// CSetPass dialog


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


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


BEGIN_MESSAGE_MAP(CSetPass, CDialog)
	//{{AFX_MSG_MAP(CSetPass)
	ON_COMMAND(ID_ExpStudent, OnExpStudent)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CSetPass message handlers

void CSetPass::OnExpStudent() 
{
	_RecordsetPtr Record;

	
}