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

数据库编程

开发平台:

Visual C++

  1. // Fdgztjdlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "GZGLXT.h"
  5. #include "Fdgztjdlg.h"
  6. #include "Ygfdgzxmb.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CFdgztjdlg dialog
  14. CFdgztjdlg::CFdgztjdlg(CWnd* pParent /*=NULL*/)
  15. : CDialog(CFdgztjdlg::IDD, pParent)
  16. {
  17. //{{AFX_DATA_INIT(CFdgztjdlg)
  18. m_zfbz = 0;
  19. m_shbz = 0;
  20. m_bxf = 0;
  21. m_grsds = 0;
  22. //}}AFX_DATA_INIT
  23. m_hIcon = AfxGetApp()->LoadIcon(IDI_GZTJICON);
  24. }
  25. void CFdgztjdlg::DoDataExchange(CDataExchange* pDX)
  26. {
  27. CDialog::DoDataExchange(pDX);
  28. //{{AFX_DATA_MAP(CFdgztjdlg)
  29. DDX_Control(pDX, IDC_DATACOMBO1, m_dc);
  30. DDX_Text(pDX, IDC_EDIT3, m_zfbz);
  31. DDX_Text(pDX, IDC_EDIT4, m_shbz);
  32. DDX_Text(pDX, IDC_EDIT5, m_bxf);
  33. DDX_Text(pDX, IDC_EDIT6, m_grsds);
  34. //}}AFX_DATA_MAP
  35. }
  36. BEGIN_MESSAGE_MAP(CFdgztjdlg, CDialog)
  37. //{{AFX_MSG_MAP(CFdgztjdlg)
  38. //}}AFX_MSG_MAP
  39. END_MESSAGE_MAP()
  40. /////////////////////////////////////////////////////////////////////////////
  41. // CFdgztjdlg message handlers
  42. void CFdgztjdlg::OnOK() 
  43. {
  44. // TODO: Add extra validation here
  45. UpdateData(true);
  46. CString str;
  47. str=m_dc.GetText();
  48. CYgfdgzxmb xmb;
  49. xmb.SetBXf(m_bxf);
  50. xmb.SetGRsds(m_grsds);
  51. xmb.SetSHbz(m_shbz);
  52. xmb.SetZFbz(m_zfbz);
  53. xmb.sql_update(str);
  54. CDialog::OnOK();
  55. }
  56. BOOL CFdgztjdlg::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 CFdgztjdlg::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. }