JBGZTJDLG.CPP
资源名称:gongzi.rar [点击查看]
上传用户:ghostdhl
上传日期:2018-06-14
资源大小:9728k
文件大小:2k
源码类别:
数据库编程
开发平台:
Visual C++
- // Jbgztjdlg.cpp : implementation file
- //
- #include "stdafx.h"
- #include "GZGLXT.h"
- #include "Jbgztjdlg.h"
- #include "Ygjbgzb.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CJbgztjdlg dialog
- CJbgztjdlg::CJbgztjdlg(CWnd* pParent /*=NULL*/)
- : CDialog(CJbgztjdlg::IDD, pParent)
- {
- //{{AFX_DATA_INIT(CJbgztjdlg)
- m_jbgz = 0;
- m_zwgz = 0;
- m_glgz = 0;
- m_ylbxj = 0;
- //}}AFX_DATA_INIT
- m_hIcon = AfxGetApp()->LoadIcon(IDI_GZTJICON);
- }
- void CJbgztjdlg::DoDataExchange(CDataExchange* pDX)
- {
- CDialog::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(CJbgztjdlg)
- DDX_Control(pDX, IDC_DATACOMBO1, m_dc);
- DDX_Text(pDX, IDC_EDIT3, m_jbgz);
- DDX_Text(pDX, IDC_EDIT4, m_zwgz);
- DDX_Text(pDX, IDC_EDIT5, m_glgz);
- DDX_Text(pDX, IDC_EDIT6, m_ylbxj);
- //}}AFX_DATA_MAP
- }
- BEGIN_MESSAGE_MAP(CJbgztjdlg, CDialog)
- //{{AFX_MSG_MAP(CJbgztjdlg)
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // CJbgztjdlg message handlers
- void CJbgztjdlg::OnOK()
- {
- // TODO: Add extra validation here
- UpdateData(true);
- CString str;
- str=m_dc.GetText();
- CYgjbgzb gzb;
- gzb.SetGLgz(m_glgz);
- gzb.SetJBgz(m_jbgz);
- gzb.SetYLbxj(m_ylbxj);
- gzb.SetZWgz(m_zwgz);
- gzb.sql_update(str);
- CDialog::OnOK();
- }
- BOOL CJbgztjdlg::OnInitDialog()
- {
- CDialog::OnInitDialog();
- // TODO: Add extra initialization here
- SetIcon(m_hIcon, TRUE);
- return TRUE; // return TRUE unless you set the focus to a control
- // EXCEPTION: OCX Property Pages should return FALSE
- }
- BOOL CJbgztjdlg::PreTranslateMessage(MSG* pMsg)
- {
- // TODO: Add your specialized code here and/or call the base class
- if(pMsg->message==WM_KEYDOWN && pMsg->wParam==13)
- pMsg->wParam=9;
- return CDialog::PreTranslateMessage(pMsg);
- }