Deletedlg.cpp
资源名称:一个学生管理系统.rar [点击查看]
上传用户:hzzhuce
上传日期:2013-04-01
资源大小:1289k
文件大小:1k
源码类别:
SQL Server
开发平台:
Visual C++
- // Deletedlg.cpp : implementation file
- //
- #include "stdafx.h"
- #include "student.h"
- #include "Deletedlg.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CDeletedlg dialog
- CDeletedlg::CDeletedlg(CWnd* pParent /*=NULL*/)
- : CDialog(CDeletedlg::IDD, pParent)
- {
- //{{AFX_DATA_INIT(CDeletedlg)
- m_num = 0;
- //}}AFX_DATA_INIT
- }
- void CDeletedlg::DoDataExchange(CDataExchange* pDX)
- {
- CDialog::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(CDeletedlg)
- DDX_Text(pDX, IDC_EDIT1, m_num);
- //}}AFX_DATA_MAP
- }
- BEGIN_MESSAGE_MAP(CDeletedlg, CDialog)
- //{{AFX_MSG_MAP(CDeletedlg)
- // NOTE: the ClassWizard will add message map macros here
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // CDeletedlg message handlers