home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1996 December / PCWKCD1296.iso / vjplusb / msdev / bin / ide / mfcapwz.dll / TEMPLATE / DLGROOT.CPP < prev    next >
C/C++ Source or Header  |  1996-07-12  |  3KB  |  130 lines

  1. // $$root$$.cpp : Defines the class behaviors for the application.
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include "$$root$$.h"
  6. #include "$$dlg_hfile$$.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. // $$APP_CLASS$$
  16.  
  17. BEGIN_MESSAGE_MAP($$APP_CLASS$$, $$APP_BASE_CLASS$$)
  18.     //{{AFX_MSG_MAP($$APP_CLASS$$)
  19. $$IF(VERBOSE)
  20.         // NOTE - the ClassWizard will add and remove mapping macros here.
  21.         //    DO NOT EDIT what you see in these blocks of generated code!
  22. $$ENDIF
  23.     //}}AFX_MSG
  24.     ON_COMMAND(ID_HELP, CWinApp::OnHelp)
  25. END_MESSAGE_MAP()
  26.  
  27. /////////////////////////////////////////////////////////////////////////////
  28. // $$APP_CLASS$$ construction
  29.  
  30. $$APP_CLASS$$::$$APP_CLASS$$()
  31. {
  32. $$IF(VERBOSE)    
  33.     // TODO: add construction code here,
  34.     // Place all significant initialization in InitInstance
  35. $$ENDIF
  36. }
  37.  
  38. /////////////////////////////////////////////////////////////////////////////
  39. // The one and only $$APP_CLASS$$ object
  40.  
  41. $$APP_CLASS$$ theApp;
  42.  
  43. /////////////////////////////////////////////////////////////////////////////
  44. // $$APP_CLASS$$ initialization
  45.  
  46. BOOL $$APP_CLASS$$::InitInstance()
  47. {
  48. $$IF(SOCKETS)
  49.     if (!AfxSocketInit())
  50.     {
  51.         AfxMessageBox(IDP_SOCKETS_INIT_FAILED);
  52.         return FALSE;
  53.     }
  54.  
  55. $$ENDIF //SOCKETS
  56. $$IF(AUTOMATION)
  57.     // Initialize OLE libraries
  58.     if (!AfxOleInit())
  59.     {
  60.         AfxMessageBox(IDP_OLE_INIT_FAILED);
  61.         return FALSE;
  62.     }
  63.  
  64. $$ENDIF //AUTOMATION
  65. $$IF(OLECTL)
  66.     AfxEnableControlContainer();
  67.  
  68. $$ENDIF //OLECTL
  69.     // Standard initialization
  70. $$IF(VERBOSE)
  71.     // If you are not using these features and wish to reduce the size
  72.     //  of your final executable, you should remove from the following
  73.     //  the specific initialization routines you do not need.
  74. $$ENDIF
  75.  
  76. $$IF(3D)
  77. #ifdef _AFXDLL
  78.     Enable3dControls();            // Call this when using MFC in a shared DLL
  79. #else
  80.     Enable3dControlsStatic();    // Call this when linking to MFC statically
  81. #endif
  82.  
  83. $$ENDIF //3D
  84. $$IF(AUTOMATION)
  85. $$IF(VERBOSE)
  86.     // Parse the command line to see if launched as OLE server
  87. $$ENDIF
  88.     if (RunEmbedded() || RunAutomated())
  89.     {
  90. $$IF(VERBOSE)
  91.         // Register all OLE server (factories) as running.  This enables the
  92.         //  OLE libraries to create objects from other applications.
  93. $$ENDIF
  94.         COleTemplateServer::RegisterAll();
  95.  
  96.         // Application was run with /Embedding or /Automation.  Don't show the
  97.         //  main window in this case.
  98.         return TRUE;
  99.     }
  100.  
  101. $$IF(VERBOSE)
  102.     // When a server application is launched stand-alone, it is a good idea
  103.     //  to update the system registry in case it has been damaged.
  104. $$ENDIF
  105.     COleObjectFactory::UpdateRegistryAll();
  106.  
  107. $$ENDIF //AUTOMATION
  108.     $$DLG_CLASS$$ dlg;
  109.     m_pMainWnd = &dlg;
  110.     int nResponse = dlg.DoModal();
  111.     if (nResponse == IDOK)
  112.     {
  113. $$IF(VERBOSE)
  114.         // TODO: Place code here to handle when the dialog is
  115.         //  dismissed with OK
  116. $$ENDIF
  117.     }
  118.     else if (nResponse == IDCANCEL)
  119.     {
  120. $$IF(VERBOSE)
  121.         // TODO: Place code here to handle when the dialog is
  122.         //  dismissed with Cancel
  123. $$ENDIF
  124.     }
  125.  
  126.     // Since the dialog has been closed, return FALSE so that we exit the
  127.     //  application, rather than start the application's message pump.
  128.     return FALSE;
  129. }
  130.