PhoneBook.cpp
上传用户:cuijiu615
上传日期:2007-03-28
资源大小:45k
文件大小:2k
源码类别:

家庭/个人应用

开发平台:

Visual C++

  1. // PhoneBook.cpp : Defines the class behaviors for the application.
  2. //
  3. #include "stdafx.h"
  4. #include "PhoneBook.h"
  5. #include "PhoneSheetDlg.h"
  6. #include "PhonePage.h"
  7. #include "ListPage.h"
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CPhoneBookApp
  15. BEGIN_MESSAGE_MAP(CPhoneBookApp, CWinApp)
  16. //{{AFX_MSG_MAP(CPhoneBookApp)
  17. // NOTE - the ClassWizard will add and remove mapping macros here.
  18. //    DO NOT EDIT what you see in these blocks of generated code!
  19. //}}AFX_MSG
  20. ON_COMMAND(ID_HELP, CWinApp::OnHelp)
  21. END_MESSAGE_MAP()
  22. /////////////////////////////////////////////////////////////////////////////
  23. // CPhoneBookApp construction
  24. CPhoneBookApp::CPhoneBookApp()
  25. {
  26. // TODO: add construction code here,
  27. // Place all significant initialization in InitInstance
  28. }
  29. /////////////////////////////////////////////////////////////////////////////
  30. // The one and only CPhoneBookApp object
  31. CPhoneBookApp theApp;
  32. /////////////////////////////////////////////////////////////////////////////
  33. // CPhoneBookApp initialization
  34. BOOL CPhoneBookApp::InitInstance()
  35. {
  36. AfxEnableControlContainer();
  37. // Standard initialization
  38. // If you are not using these features and wish to reduce the size
  39. //  of your final executable, you should remove from the following
  40. //  the specific initialization routines you do not need.
  41. #ifdef _AFXDLL
  42. Enable3dControls(); // Call this when using MFC in a shared DLL
  43. #else
  44. Enable3dControlsStatic(); // Call this when linking to MFC statically
  45. #endif
  46. PhoneSheetDlg dlg("ͨѶ¼");
  47. ListPage page2;
  48. PhonePage page1;
  49. dlg.AddPage(&page1);
  50. dlg.AddPage(&page2);
  51. dlg.DoModal();
  52. // Since the dialog has been closed, return FALSE so that we exit the
  53. //  application, rather than start the application's message pump.
  54. return FALSE;
  55. }