JBGZTJDLG.CPP
上传用户:ghostdhl
上传日期:2018-06-14
资源大小:9728k
文件大小:2k
源码类别:

数据库编程

开发平台:

Visual C++

  1. // Jbgztjdlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "GZGLXT.h"
  5. #include "Jbgztjdlg.h"
  6. #include "Ygjbgzb.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CJbgztjdlg dialog
  14. CJbgztjdlg::CJbgztjdlg(CWnd* pParent /*=NULL*/)
  15. : CDialog(CJbgztjdlg::IDD, pParent)
  16. {
  17. //{{AFX_DATA_INIT(CJbgztjdlg)
  18. m_jbgz = 0;
  19. m_zwgz = 0;
  20. m_glgz = 0;
  21. m_ylbxj = 0;
  22. //}}AFX_DATA_INIT
  23. m_hIcon = AfxGetApp()->LoadIcon(IDI_GZTJICON);
  24. }
  25. void CJbgztjdlg::DoDataExchange(CDataExchange* pDX)
  26. {
  27. CDialog::DoDataExchange(pDX);
  28. //{{AFX_DATA_MAP(CJbgztjdlg)
  29. DDX_Control(pDX, IDC_DATACOMBO1, m_dc);
  30. DDX_Text(pDX, IDC_EDIT3, m_jbgz);
  31. DDX_Text(pDX, IDC_EDIT4, m_zwgz);
  32. DDX_Text(pDX, IDC_EDIT5, m_glgz);
  33. DDX_Text(pDX, IDC_EDIT6, m_ylbxj);
  34. //}}AFX_DATA_MAP
  35. }
  36. BEGIN_MESSAGE_MAP(CJbgztjdlg, CDialog)
  37. //{{AFX_MSG_MAP(CJbgztjdlg)
  38. //}}AFX_MSG_MAP
  39. END_MESSAGE_MAP()
  40. /////////////////////////////////////////////////////////////////////////////
  41. // CJbgztjdlg message handlers
  42. void CJbgztjdlg::OnOK() 
  43. {
  44. // TODO: Add extra validation here
  45. UpdateData(true);
  46. CString str;
  47. str=m_dc.GetText();
  48. CYgjbgzb gzb;
  49.     gzb.SetGLgz(m_glgz);
  50. gzb.SetJBgz(m_jbgz);
  51. gzb.SetYLbxj(m_ylbxj);
  52. gzb.SetZWgz(m_zwgz);
  53. gzb.sql_update(str);
  54. CDialog::OnOK();
  55. }
  56. BOOL CJbgztjdlg::OnInitDialog() 
  57. {
  58. CDialog::OnInitDialog();
  59. // TODO: Add extra initialization here
  60. SetIcon(m_hIcon, TRUE);
  61. return TRUE;  // return TRUE unless you set the focus to a control
  62.               // EXCEPTION: OCX Property Pages should return FALSE
  63. }
  64. BOOL CJbgztjdlg::PreTranslateMessage(MSG* pMsg) 
  65. {
  66. // TODO: Add your specialized code here and/or call the base class
  67. if(pMsg->message==WM_KEYDOWN && pMsg->wParam==13)
  68. pMsg->wParam=9;
  69. return CDialog::PreTranslateMessage(pMsg);
  70. }