home *** CD-ROM | disk | FTP | other *** search
/ BUG 4 / BUGCD1997_05.BIN / aplic / visualj / vjtrial.exe / RCDATA / CABINET / mfcapwz.dll / TEMPLATE / DLGROOT.CPP < prev    next >
C/C++ Source or Header  |  1997-01-28  |  3KB  |  128 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.     else
  97.     {
  98. $$IF(VERBOSE)
  99.         // When a server application is launched stand-alone, it is a good idea
  100.         //  to update the system registry in case it has been damaged.
  101. $$ENDIF
  102.         COleObjectFactory::UpdateRegistryAll();
  103.     }
  104.  
  105. $$ENDIF //AUTOMATION
  106.     $$DLG_CLASS$$ dlg;
  107.     m_pMainWnd = &dlg;
  108.     int nResponse = dlg.DoModal();
  109.     if (nResponse == IDOK)
  110.     {
  111. $$IF(VERBOSE)
  112.         // TODO: Place code here to handle when the dialog is
  113.         //  dismissed with OK
  114. $$ENDIF
  115.     }
  116.     else if (nResponse == IDCANCEL)
  117.     {
  118. $$IF(VERBOSE)
  119.         // TODO: Place code here to handle when the dialog is
  120.         //  dismissed with Cancel
  121. $$ENDIF
  122.     }
  123.  
  124.     // Since the dialog has been closed, return FALSE so that we exit the
  125.     //  application, rather than start the application's message pump.
  126.     return FALSE;
  127. }
  128.