home *** CD-ROM | disk | FTP | other *** search
/ Mastering MFC Development / MMD.ISO / labs / c10 / lab01 / ex01 / querydlg.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1997-02-20  |  1.0 KB  |  46 lines

  1. // QueryDlg.cpp : implementation file
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include "Browser.h"
  6. #include "QueryDlg.h"
  7.  
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13.  
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CQueryDlg dialog
  16.  
  17.  
  18. CQueryDlg::CQueryDlg(CWnd* pParent /*=NULL*/)
  19.     : CDialog(CQueryDlg::IDD, pParent)
  20. {
  21.     //{{AFX_DATA_INIT(CQueryDlg)
  22.     m_strParamName = _T("");
  23.     m_strParamValue = _T("");
  24.     //}}AFX_DATA_INIT
  25. }
  26.  
  27.  
  28. void CQueryDlg::DoDataExchange(CDataExchange* pDX)
  29. {
  30.     CDialog::DoDataExchange(pDX);
  31.     //{{AFX_DATA_MAP(CQueryDlg)
  32.     DDX_Text(pDX, IDC_PARAM_NAME, m_strParamName);
  33.     DDX_Text(pDX, IDC_PARAM_VALUE, m_strParamValue);
  34.     //}}AFX_DATA_MAP
  35. }
  36.  
  37.  
  38. BEGIN_MESSAGE_MAP(CQueryDlg, CDialog)
  39.     //{{AFX_MSG_MAP(CQueryDlg)
  40.         // NOTE: the ClassWizard will add message map macros here
  41.     //}}AFX_MSG_MAP
  42. END_MESSAGE_MAP()
  43.  
  44. /////////////////////////////////////////////////////////////////////////////
  45. // CQueryDlg message handlers
  46.