12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- // InputCode.cpp : implementation file
- //
- #include "stdafx.h"
- #include "dbserver.h"
- #include "InputCode.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // InputCode dialog
- InputCode::InputCode(CWnd* pParent /*=NULL*/)
- : CDialog(InputCode::IDD, pParent)
- {
- //{{AFX_DATA_INIT(InputCode)
- m_code = _T("");
- //}}AFX_DATA_INIT
- }
- void InputCode::DoDataExchange(CDataExchange* pDX)
- {
- CDialog::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(InputCode)
- DDX_Text(pDX, IDC_EDIT1, m_code);
- //}}AFX_DATA_MAP
- }
- BEGIN_MESSAGE_MAP(InputCode, CDialog)
- //{{AFX_MSG_MAP(InputCode)
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // InputCode message handlers
- void InputCode::OnOK() // Ò½Ôº¸ú×Ùϵͳע²á;
- {
- UpdateData();
-
- CDialog::OnOK();
- }
|