dlgdel.cpp
来自「大学班务管理系统」· C++ 代码 · 共 45 行
CPP
45 行
// Dlgdel.cpp : implementation file
//
#include "stdafx.h"
#include "教学管理信息系统.h"
#include "Dlgdel.h"
#include "stuinforecordset1.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CDlgdel dialog
CDlgdel::CDlgdel(CWnd* pParent /*=NULL*/)
: CDialog(CDlgdel::IDD, pParent)
{
//{{AFX_DATA_INIT(CDlgdel)
m_stunum = _T("");
//}}AFX_DATA_INIT
}
void CDlgdel::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CDlgdel)
DDX_Text(pDX, IDC_EDITstunum, m_stunum);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CDlgdel, CDialog)
//{{AFX_MSG_MAP(CDlgdel)
// NOTE: the ClassWizard will add message map macros here
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CDlgdel message handlers
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?