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

数据库编程

开发平台:

Visual C++

  1. // edityuangong.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "工资.h"
  5. #include "edityuangong.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // edityuangong dialog
  13. edityuangong::edityuangong(CWnd* pParent /*=NULL*/)
  14. : CDialog(edityuangong::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(edityuangong)
  17. // NOTE: the ClassWizard will add member initialization here
  18. //}}AFX_DATA_INIT
  19. }
  20. void edityuangong::DoDataExchange(CDataExchange* pDX)
  21. {
  22. CDialog::DoDataExchange(pDX);
  23. //{{AFX_DATA_MAP(edityuangong)
  24. // NOTE: the ClassWizard will add DDX and DDV calls here
  25. //}}AFX_DATA_MAP
  26. }
  27. BEGIN_MESSAGE_MAP(edityuangong, CDialog)
  28. //{{AFX_MSG_MAP(edityuangong)
  29. ON_BN_CLICKED(IDC_OK, OnOk)
  30. ON_BN_CLICKED(IDC_cancel, Oncancel)
  31. ON_CBN_EDITCHANGE(IDC_COMBO3, OnEditchangeCombo3)
  32. ON_EN_CHANGE(IDC_EDIT1, OnChangeEdit1)
  33. ON_EN_CHANGE(IDC_EDIT2, OnChangeEdit2)
  34. ON_BN_CLICKED(IDC_yuangongid, Onyuangongid)
  35. ON_BN_CLICKED(IDC_yuangongxingming, Onyuangongxingming)
  36. ON_BN_CLICKED(IDC_yuangongxingbie, Onyuangongxingbie)
  37. ON_BN_CLICKED(IDC_suoshubumen, Onsuoshubumen)
  38. ON_CBN_EDITCHANGE(IDC_COMBO1, OnEditchangeCombo1)
  39. ON_BN_CLICKED(IDC_zhiwu, Onzhiwu)
  40. ON_CBN_EDITCHANGE(IDC_COMBO2, OnEditchangeCombo2)
  41. ON_EN_CHANGE(IDC_EDIT3, OnChangeEdit3)
  42. ON_EN_CHANGE(IDC_EDIT4, OnChangeEdit4)
  43. //}}AFX_MSG_MAP
  44. END_MESSAGE_MAP()
  45. /////////////////////////////////////////////////////////////////////////////
  46. // edityuangong message handlers
  47. void edityuangong::OnOk() 
  48. {
  49. // TODO: Add your control notification handler code here
  50. }
  51. void edityuangong::Oncancel() 
  52. {
  53. // TODO: Add your control notification handler code here
  54. }
  55. void edityuangong::OnChangeEdit1() 
  56. {
  57. // TODO: If this is a RICHEDIT control, the control will not
  58. // send this notification unless you override the CDialog::OnInitDialog()
  59. // function and call CRichEditCtrl().SetEventMask()
  60. // with the ENM_CHANGE flag ORed into the mask.
  61. // TODO: Add your control notification handler code here
  62. }
  63. void edityuangong::OnChangeEdit2() 
  64. {
  65. // TODO: If this is a RICHEDIT control, the control will not
  66. // send this notification unless you override the CDialog::OnInitDialog()
  67. // function and call CRichEditCtrl().SetEventMask()
  68. // with the ENM_CHANGE flag ORed into the mask.
  69. // TODO: Add your control notification handler code here
  70. }
  71. void edityuangong::Onyuangongid() 
  72. {
  73. // TODO: Add your control notification handler code here
  74. }
  75. void edityuangong::Onyuangongxingming() 
  76. {
  77. // TODO: Add your control notification handler code here
  78. }
  79. void edityuangong::Onyuangongxingbie() 
  80. {
  81. // TODO: Add your control notification handler code here
  82. }
  83. void edityuangong::Onsuoshubumen() 
  84. {
  85. // TODO: Add your control notification handler code here
  86. }
  87. void edityuangong::Onzhiwu() 
  88. {
  89. // TODO: Add your control notification handler code here
  90. }
  91. void edityuangong::OnChangeEdit3() 
  92. {
  93. // TODO: If this is a RICHEDIT control, the control will not
  94. // send this notification unless you override the CDialog::OnInitDialog()
  95. // function and call CRichEditCtrl().SetEventMask()
  96. // with the ENM_CHANGE flag ORed into the mask.
  97. // TODO: Add your control notification handler code here
  98. }
  99. void edityuangong::OnChangeEdit4() 
  100. {
  101. // TODO: If this is a RICHEDIT control, the control will not
  102. // send this notification unless you override the CDialog::OnInitDialog()
  103. // function and call CRichEditCtrl().SetEventMask()
  104. // with the ENM_CHANGE flag ORed into the mask.
  105. // TODO: Add your control notification handler code here
  106. }