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

数据库编程

开发平台:

Visual C++

  1. // singlestaffsalary.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "工资.h"
  5. #include "singlestaffsalary.h"
  6. #include "yuangong.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // singlestaffsalary dialog
  14. singlestaffsalary::singlestaffsalary(CWnd* pParent /*=NULL*/)
  15. : CDialog(singlestaffsalary::IDD, pParent)
  16. {
  17. //{{AFX_DATA_INIT(singlestaffsalary)
  18. m_id = 0;
  19. //}}AFX_DATA_INIT
  20. }
  21. void singlestaffsalary::DoDataExchange(CDataExchange* pDX)
  22. {
  23. CDialog::DoDataExchange(pDX);
  24. //{{AFX_DATA_MAP(singlestaffsalary)
  25. DDX_Text(pDX, IDC_EDIT1, m_id);
  26. //}}AFX_DATA_MAP
  27. }
  28. BEGIN_MESSAGE_MAP(singlestaffsalary, CDialog)
  29. //{{AFX_MSG_MAP(singlestaffsalary)
  30. ON_BN_CLICKED(IDC_ok, Onok)
  31. ON_BN_CLICKED(IDC_cancel, Oncancel)
  32. //}}AFX_MSG_MAP
  33. END_MESSAGE_MAP()
  34. /////////////////////////////////////////////////////////////////////////////
  35. // singlestaffsalary message handlers
  36. void singlestaffsalary::Onok() 
  37. {  /*  int a1,a2,a3,a4;
  38.       int salary;
  39.      UpdateData(TRUE);
  40.  yuangong ling;
  41.      ling.cempid=m_id;
  42.      if(ling.cempid==0)
  43.        MessageBox("Please input the right ID");
  44.      else
  45.  {  a1=ling.getbase();
  46.       CString tmp;
  47.          tmp.Format("%d",a1);
  48.  MessageBox("the base salary is "+tmp);
  49.  }
  50.          a2=ling.getbumenjintie(ling.cempid);
  51.  a3=ling.jiabanjintie(ling.cempid);
  52.  a4=ling.koukuan(ling.cempid);
  53.          salary=a1+a2+a3-a4;
  54.  CString tmp;
  55.          tmp.Format("%d",a1);
  56.  MessageBox("the base salary is "+tmp);
  57.          tmp.Format("%d",a2);
  58.  MessageBox("the bumenjintie is "+tmp);
  59.          tmp.Format("%d",a3);
  60.  MessageBox("the jiabanjintie  is "+tmp);
  61.          tmp.Format("%d",a4);
  62.  MessageBox("the koukan is "+tmp);
  63.  // TODO: Add your control notification handler code here
  64. CDialog::OnOK();
  65. */
  66. }
  67. void singlestaffsalary::Oncancel() 
  68. {
  69. // TODO: Add your control notification handler code here
  70. }