insertbumen.cpp
上传用户:xz12345
上传日期:2007-09-12
资源大小:7437k
文件大小:1k
- // insertbumen.cpp : implementation file
- //
- #include "stdafx.h"
- #include "工资.h"
- #include "insertbumen.h"
- #include "bumenxinxi.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // insertbumen dialog
- insertbumen::insertbumen(CWnd* pParent /*=NULL*/)
- : CDialog(insertbumen::IDD, pParent)
- {
- //{{AFX_DATA_INIT(insertbumen)
- m_bmid = _T("");
- m_bmname = _T("");
- m_bmjintie = _T("");
- //}}AFX_DATA_INIT
- }
- void insertbumen::DoDataExchange(CDataExchange* pDX)
- {
- CDialog::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(insertbumen)
- DDX_Text(pDX, IDC_EDIT1, m_bmid);
- DDX_Text(pDX, IDC_EDIT2, m_bmname);
- DDX_Text(pDX, IDC_EDIT3, m_bmjintie);
- //}}AFX_DATA_MAP
- }
- BEGIN_MESSAGE_MAP(insertbumen, CDialog)
- //{{AFX_MSG_MAP(insertbumen)
- ON_BN_CLICKED(IDC_BUTTON2, OnButton2)
- ON_BN_CLICKED(IDC_BUTTON3, OnButton3)
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // insertbumen message handlers
- void insertbumen::OnButton2()
- {
- bumenxinxi box;
- UpdateData(TRUE);
- box.bmid=m_bmid;
- box.bmname=m_bmname;
- box.bmjintie=m_bmjintie;
- box.sql_insert();
- CDialog::OnOK();
- // TODO: Add your control notification handler code here
-
- }
- void insertbumen::OnButton3()
- {
- CDialog::OnCancel();
- // TODO: Add your control notification handler code here
-
- }