home *** CD-ROM | disk | FTP | other *** search
- // QueryDlg.cpp : implementation file
- //
-
- #include "stdafx.h"
- #include "Browser.h"
- #include "QueryDlg.h"
-
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
-
- /////////////////////////////////////////////////////////////////////////////
- // CQueryDlg dialog
-
-
- CQueryDlg::CQueryDlg(CWnd* pParent /*=NULL*/)
- : CDialog(CQueryDlg::IDD, pParent)
- {
- //{{AFX_DATA_INIT(CQueryDlg)
- m_strParamName = _T("");
- m_strParamValue = _T("");
- //}}AFX_DATA_INIT
- }
-
-
- void CQueryDlg::DoDataExchange(CDataExchange* pDX)
- {
- CDialog::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(CQueryDlg)
- DDX_Text(pDX, IDC_PARAM_NAME, m_strParamName);
- DDX_Text(pDX, IDC_PARAM_VALUE, m_strParamValue);
- //}}AFX_DATA_MAP
- }
-
-
- BEGIN_MESSAGE_MAP(CQueryDlg, CDialog)
- //{{AFX_MSG_MAP(CQueryDlg)
- // NOTE: the ClassWizard will add message map macros here
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
-
- /////////////////////////////////////////////////////////////////////////////
- // CQueryDlg message handlers
-