home *** CD-ROM | disk | FTP | other *** search
/ Media Share 13 / mediashare_13.zip / mediashare_13 / ZIPPED / PROGRAM / WTJ9403.ZIP / WILDASS / SOURCE / FIRSTTIM.CPP < prev    next >
C/C++ Source or Header  |  1993-08-12  |  1KB  |  57 lines

  1. // firsttim.cpp : implementation file
  2. //
  3.  
  4. #include <afxwin.h>
  5. #include <afxext.h> 
  6. #include <ctl3d.h> 
  7.  
  8. #include "resource.h"                  
  9.  
  10. //#include "stdafx.h"
  11. //#include "morespac.h"
  12. #include "firsttim.h"
  13.  
  14. #ifdef _DEBUG
  15. #undef THIS_FILE
  16. static char BASED_CODE THIS_FILE[] = __FILE__;
  17. #define new DEBUG_NEW
  18. #endif
  19.  
  20. /////////////////////////////////////////////////////////////////////////////
  21. // CFirstTimeDlg dialog
  22.  
  23. CFirstTimeDlg::CFirstTimeDlg(CWnd* pParent /*=NULL*/)
  24.    : CDialog(CFirstTimeDlg::IDD, pParent)
  25. {
  26.    //{{AFX_DATA_INIT(CFirstTimeDlg)
  27.       // NOTE: the ClassWizard will add member initialization here
  28.    //}}AFX_DATA_INIT
  29. }
  30.  
  31. void CFirstTimeDlg::DoDataExchange(CDataExchange* pDX)
  32. {
  33.    CDialog::DoDataExchange(pDX);
  34.    //{{AFX_DATA_MAP(CFirstTimeDlg)
  35.       // NOTE: the ClassWizard will add DDX and DDV calls here
  36.    //}}AFX_DATA_MAP
  37. }
  38.  
  39. BEGIN_MESSAGE_MAP(CFirstTimeDlg, CDialog)
  40.    //{{AFX_MSG_MAP(CFirstTimeDlg)
  41.    //}}AFX_MSG_MAP
  42. END_MESSAGE_MAP()
  43.  
  44. /////////////////////////////////////////////////////////////////////////////
  45. // CFirstTimeDlg message handlers
  46.  
  47. BOOL CFirstTimeDlg::OnInitDialog()
  48. {
  49.    CDialog::OnInitDialog();
  50.    
  51.    // TODO: Add extra initialization here
  52.    CenterWindow( CWnd::GetDesktopWindow() );
  53.    
  54.    return TRUE;  // return TRUE  unless you set the focus to a control
  55. }
  56.  
  57.