home *** CD-ROM | disk | FTP | other *** search
/ Delphi 5 for Professionals / DELPHI5.iso / AddOns / Components / Cell Control / DATA1.CAB / VCDEMO_Files / FuncGuideDlg.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1998-01-11  |  1.1 KB  |  50 lines

  1. // FuncGuideDlg.cpp : implementation file
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include "vcdemo.h"
  6. #include "FuncGuideDlg.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. // CFuncGuideDlg dialog
  16.  
  17.  
  18. CFuncGuideDlg::CFuncGuideDlg(CWnd* pParent /*=NULL*/)
  19.     : CDialog(CFuncGuideDlg::IDD, pParent)
  20. {
  21.     //{{AFX_DATA_INIT(CFuncGuideDlg)
  22.     m_para1 = _T("");
  23.     m_para2 = _T("");
  24.     m_para3 = _T("");
  25.     m_para4 = _T("");
  26.     //}}AFX_DATA_INIT
  27. }
  28.  
  29.  
  30. void CFuncGuideDlg::DoDataExchange(CDataExchange* pDX)
  31. {
  32.     CDialog::DoDataExchange(pDX);
  33.     //{{AFX_DATA_MAP(CFuncGuideDlg)
  34.     DDX_Text(pDX, IDC_EDIT1, m_para1);
  35.     DDX_Text(pDX, IDC_EDIT2, m_para2);
  36.     DDX_Text(pDX, IDC_EDIT3, m_para3);
  37.     DDX_Text(pDX, IDC_EDIT4, m_para4);
  38.     //}}AFX_DATA_MAP
  39. }
  40.  
  41.  
  42. BEGIN_MESSAGE_MAP(CFuncGuideDlg, CDialog)
  43.     //{{AFX_MSG_MAP(CFuncGuideDlg)
  44.         // NOTE: the ClassWizard will add message map macros here
  45.     //}}AFX_MSG_MAP
  46. END_MESSAGE_MAP()
  47.  
  48. /////////////////////////////////////////////////////////////////////////////
  49. // CFuncGuideDlg message handlers
  50.