home *** CD-ROM | disk | FTP | other *** search
/ distrib.akp.su/Programming/Vb-6+Rus/ / distrib.akp.su.tar / distrib.akp.su / Programming / Vb-6+Rus / COMMON / MSDEV98 / BIN / IDE / CUSTMWZ.AWX / TEMPLATE / CSTMDLG.CPP < prev    next >
C/C++ Source or Header  |  1998-06-18  |  2KB  |  57 lines

  1. // cstm$$ITERATOR$$dlg.cpp : implementation file
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include "$$root$$.h"
  6. #include "cstm$$ITERATOR$$dlg.h"
  7. #include "$$filebase$$aw.h"
  8.  
  9. #ifdef _PSEUDO_DEBUG
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13.  
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CCustom$$ITERATOR$$Dlg dialog
  16.  
  17.  
  18. CCustom$$ITERATOR$$Dlg::CCustom$$ITERATOR$$Dlg()
  19.     : CAppWizStepDlg(CCustom$$ITERATOR$$Dlg::IDD)
  20. {
  21.     //{{AFX_DATA_INIT(CCustom$$ITERATOR$$Dlg)
  22.         // NOTE: the ClassWizard will add member initialization here
  23.     //}}AFX_DATA_INIT
  24. }
  25.  
  26.  
  27. void CCustom$$ITERATOR$$Dlg::DoDataExchange(CDataExchange* pDX)
  28. {
  29.     CAppWizStepDlg::DoDataExchange(pDX);
  30.     //{{AFX_DATA_MAP(CCustom$$ITERATOR$$Dlg)
  31.         // NOTE: the ClassWizard will add DDX and DDV calls here
  32.     //}}AFX_DATA_MAP
  33. }
  34.  
  35. // This is called whenever the user presses Next, Back, or Finish with this step
  36. //  present.  Do all validation & data exchange from the dialog in this function.
  37. BOOL CCustom$$ITERATOR$$Dlg::OnDismiss()
  38. {
  39.     if (!UpdateData(TRUE))
  40.         return FALSE;
  41.  
  42.     // TODO: Set template variables based on the dialog's data.
  43.  
  44.     return TRUE;    // return FALSE if the dialog shouldn't be dismissed
  45. }
  46.  
  47.  
  48. BEGIN_MESSAGE_MAP(CCustom$$ITERATOR$$Dlg, CAppWizStepDlg)
  49.     //{{AFX_MSG_MAP(CCustom$$ITERATOR$$Dlg)
  50.         // NOTE: the ClassWizard will add message map macros here
  51.     //}}AFX_MSG_MAP
  52. END_MESSAGE_MAP()
  53.  
  54.  
  55. /////////////////////////////////////////////////////////////////////////////
  56. // CCustom$$ITERATOR$$Dlg message handlers
  57.