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

📄 addstudlg.cpp

📁 毕业生信息管理系统的基本功能是对毕业生的信息进行管理
💻 CPP
字号:
// AddStuDlg.cpp : implementation file
//

#include "stdafx.h"
#include "BySys.h"
#include "AddStuDlg.h"
#include "JBDNDlg.h"
#include "JTCYDlg.h"
#include "GZJLDlg.h"
#include "CFJLDlg.h"
#include "ZCPDDlg.h"
#include "xunDlg.h"
#include "GRJLDlg.h"

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

/////////////////////////////////////////////////////////////////////////////
// CAddStuDlg dialog


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


void CAddStuDlg::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CAddStuDlg)
	DDX_Control(pDX, IDC_JBDN_BUTTON, m_Jbdn);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(CAddStuDlg, CDialog)
	//{{AFX_MSG_MAP(CAddStuDlg)
	ON_BN_CLICKED(IDC_JBDN_BUTTON, OnJbdnButton)
	ON_BN_CLICKED(IDC_CFJL_BUTTON, OnCfjlButton)
	ON_BN_CLICKED(IDC_GRJL_BUTTON, OnGrjlButton)
	ON_BN_CLICKED(IDC_GZJL_BUTTON, OnGzjlButton)
	ON_BN_CLICKED(IDC_JTCY_BUTTON, OnJtcyButton)
	ON_BN_CLICKED(IDC_PXJL_BUTTON, OnPxjlButton)
	ON_BN_CLICKED(IDC_ZCPD_BUTTON, OnZcpdButton)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CAddStuDlg message handlers

void CAddStuDlg::OnJbdnButton() 
{
	// TODO: Add your control notification handler code here
	CJBDNDlg dlg1;
	dlg1.DoModal();
	
}

void CAddStuDlg::OnCfjlButton() 
{
	// TODO: Add your control notification handler code here
	CCFJLDlg dlg4;
	dlg4.DoModal();
	
}

void CAddStuDlg::OnGrjlButton() 
{
	// TODO: Add your control notification handler code here
	CGRJLDlg dlg6;
	dlg6.DoModal();
}

void CAddStuDlg::OnGzjlButton() 
{
	// TODO: Add your control notification handler code here
	CGZJLDlg dlg3;
	dlg3.DoModal();
	
}

void CAddStuDlg::OnJtcyButton() 
{
	// TODO: Add your control notification handler code here
	CJTCYDlg dlg2;
	dlg2.DoModal();
}

void CAddStuDlg::OnPxjlButton() 
{
	// TODO: Add your control notification handler code here
	CxunDlg dlg5;
	dlg5.DoModal();
	
}

void CAddStuDlg::OnZcpdButton() 
{
	// TODO: Add your control notification handler code here
	CZCPDDlg dlg5;
	dlg5.DoModal();
	
}

void CAddStuDlg::OnOK() 
{
	// TODO: Add extra validation here
	
	CDialog::OnOK();
}

⌨️ 快捷键说明

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