insertbumen.cpp
上传用户:xz12345
上传日期:2007-09-12
资源大小:7437k
文件大小:1k
源码类别:

数据库编程

开发平台:

Visual C++

  1. // insertbumen.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "工资.h"
  5. #include "insertbumen.h"
  6. #include "bumenxinxi.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // insertbumen dialog
  14. insertbumen::insertbumen(CWnd* pParent /*=NULL*/)
  15. : CDialog(insertbumen::IDD, pParent)
  16. {
  17. //{{AFX_DATA_INIT(insertbumen)
  18. m_bmid = _T("");
  19. m_bmname = _T("");
  20. m_bmjintie = _T("");
  21. //}}AFX_DATA_INIT
  22. }
  23. void insertbumen::DoDataExchange(CDataExchange* pDX)
  24. {
  25. CDialog::DoDataExchange(pDX);
  26. //{{AFX_DATA_MAP(insertbumen)
  27. DDX_Text(pDX, IDC_EDIT1, m_bmid);
  28. DDX_Text(pDX, IDC_EDIT2, m_bmname);
  29. DDX_Text(pDX, IDC_EDIT3, m_bmjintie);
  30. //}}AFX_DATA_MAP
  31. }
  32. BEGIN_MESSAGE_MAP(insertbumen, CDialog)
  33. //{{AFX_MSG_MAP(insertbumen)
  34. ON_BN_CLICKED(IDC_BUTTON2, OnButton2)
  35. ON_BN_CLICKED(IDC_BUTTON3, OnButton3)
  36. //}}AFX_MSG_MAP
  37. END_MESSAGE_MAP()
  38. /////////////////////////////////////////////////////////////////////////////
  39. // insertbumen message handlers
  40. void insertbumen::OnButton2() 
  41. bumenxinxi box;
  42. UpdateData(TRUE);
  43. box.bmid=m_bmid;
  44. box.bmname=m_bmname;
  45. box.bmjintie=m_bmjintie;
  46. box.sql_insert();
  47.     CDialog::OnOK();
  48. // TODO: Add your control notification handler code here
  49. }
  50. void insertbumen::OnButton3() 
  51. {
  52. CDialog::OnCancel();
  53. // TODO: Add your control notification handler code here
  54. }