ConnectDlg.cpp
上传用户:qiye66685
上传日期:2013-03-10
资源大小:49k
文件大小:1k
- // ConnectDlg.cpp : implementation file
- //
- #include "stdafx.h"
- #include "COCIExample.h"
- #include "ConnectDlg.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CConnectDlg dialog
- CConnectDlg::CConnectDlg(CWnd* pParent /*=NULL*/)
- : CDialog(CConnectDlg::IDD, pParent)
- {
- //{{AFX_DATA_INIT(CConnectDlg)
- m_strDBName = _T("");
- m_strUserID = _T("");
- m_strUserName = _T("");
- //}}AFX_DATA_INIT
- }
- void CConnectDlg::DoDataExchange(CDataExchange* pDX)
- {
- CDialog::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(CConnectDlg)
- DDX_Text(pDX, IDC_DBNAME, m_strDBName);
- DDX_Text(pDX, IDC_UID, m_strUserID);
- DDX_Text(pDX, IDC_UNAME, m_strUserName);
- //}}AFX_DATA_MAP
- }
- BEGIN_MESSAGE_MAP(CConnectDlg, CDialog)
- //{{AFX_MSG_MAP(CConnectDlg)
- // NOTE: the ClassWizard will add message map macros here
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // CConnectDlg message handlers